# SSJsonOpenOptions

## Content

# Type Alias: SSJsonOpenOptions

```ts
type SSJsonOpenOptions = object;
```

Options to open the SSJSON file.

## Properties

### keepColumnGroups?

```ts
optional keepColumnGroups?: boolean;
```

Optional. Whether to show the column groups when loading a SSJSON file. The default value is true.

#### Example

```javascript
viewer.openFile('Documents/HelloWorld.ssjson', FileType.SSJSON, {keepColumnGroups: false});
```

***

### keepRowGroups?

```ts
optional keepRowGroups?: boolean;
```

Optional. Whether to show the row groups when loading a SSJSON file. The default value is true.

#### Example

```javascript
viewer.openFile('Documents/HelloWorld.ssjson', FileType.SSJSON, {keepRowGroups: false});
```

***

### showFilters?

```ts
optional showFilters?: boolean;
```

Optional. Whether to show the filters in SSJSON file. The default value is true.

#### Example

```javascript
viewer.openFile('Documents/HelloWorld.ssjson', FileType.SSJSON, {showFilters: false});
```

***

### showHiddenColumns?

```ts
optional showHiddenColumns?: boolean;
```

Optional. Whether to show the hidden columns in SSJSON file. The default value is false.

#### Example

```javascript
viewer.openFile('Documents/HelloWorld.ssjson', FileType.SSJSON, {showHiddenColumns: true});
```

***

### showHiddenRows?

```ts
optional showHiddenRows?: boolean;
```

Optional. Whether to show the hidden rows in SSJSON file. The default value is false.

#### Example

```javascript
viewer.openFile('Documents/HelloWorld.ssjson', FileType.SSJSON, {showHiddenRows: true});
```

***

### showHiddenSheets?

```ts
optional showHiddenSheets?: boolean;
```

Optional. Whether to show the hidden and very hidden sheets in SSJSON file. The default value is false.

#### Example

```javascript
viewer.openFile('Documents/HelloWorld.ssjson', FileType.SSJSON, {showHiddenSheets: true});
```
