[]
        
(Showing Draft Content)

GC.Spread.Sheets.Print.PrintVisibilityType

Enumeration: PrintVisibilityType

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);

Table of contents

Enumeration members

Enumeration members

hide

hide = 1

Hides the area.


inherit

inherit = 0

Inherits the setting from the Worksheet class.


show

show = 2

Shows in each page.


showOnce

showOnce = 3

Shows once.