[]
Sheets.Print.PrintVisibilityType
Specifies whether the area is visible.
example
activeSheet.setArray(0, 0, [['Title 1', 'Title 2'], [1, 2], [3, 4]]);
var printInfo = new GC.Spread.Sheets.Print.PrintInfo();
printInfo.showColumnHeader(GC.Spread.Sheets.Print.PrintVisibilityType.hide);
activeSheet.printInfo(printInfo);
spread.print(0);
• hide = 1
Hides the area.
• inherit = 0
Inherits the setting from the Worksheet class.
• show = 2
Shows in each page.
• showOnce = 3
Shows once.