# GC.Spread.Sheets.Print.PrintVisibilityType

## Content

# Enumeration: PrintVisibilityType

[Sheets](../modules/GC.Spread.Sheets).[Print](../modules/GC.Spread.Sheets.Print).PrintVisibilityType

Specifies whether the area is visible.

**`example`**
```javascript
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

- [hide](GC.Spread.Sheets.Print.PrintVisibilityType#hide)
- [inherit](GC.Spread.Sheets.Print.PrintVisibilityType#inherit)
- [show](GC.Spread.Sheets.Print.PrintVisibilityType#show)
- [showOnce](GC.Spread.Sheets.Print.PrintVisibilityType#showonce)

## Enumeration members

### <a id="hide" name="hide"></a> hide

• **hide** = `1`

Hides the area.

___

### <a id="inherit" name="inherit"></a> inherit

• **inherit** = `0`

Inherits the setting from the Worksheet class.

___

### <a id="show" name="show"></a> show

• **show** = `2`

Shows in each page.

___

### <a id="showonce" name="showonce"></a> showOnce

• **showOnce** = `3`

Shows once.
