SpreadJS Documentation
PrintVisibilityType Enumeration
Specifies whether the area is visible.
Members
MemberDescription
HideHides the area.
InheritInherits the setting from the Sheet class.
ShowShows in each page.
ShowOnceShows once.
Example
This example hides the column headers in the printed sheet.
activeSheet.setRowCount(5, GcSpread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(5, GcSpread.Sheets.SheetArea.viewport);

activeSheet.isPaintSuspended(true);
            //set value
            for (var r = 0, rc = activeSheet.getRowCount(); r < rc; r++) {
                for (var c = 0, cc = activeSheet.getColumnCount(); c < cc; c++) {
                    activeSheet.setValue(r, c, r + c);
                }
            }
activeSheet.isPaintSuspended(false);

$("#button1").click(function () {
var printInfo = activeSheet.printInfo();
printInfo.showColumnHeader(GcSpread.Sheets.PrintVisibilityType.Hide);
spread.print(0);
   });
Inheritance Hierarchy

Object
   GcSpread.Sheets.PrintVisibilityType

See Also

Reference

GcSpread.Sheets Namespace

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.