# SjsOpenOptions

## Content

# Type Alias: SjsOpenOptions

```ts
type SjsOpenOptions = object;
```

Options to open the SJS file.

## Properties

### keepColumnGroups?

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

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

#### Example

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

***

### keepRowGroups?

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

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

#### Example

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

***

### showFilters?

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

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

#### Example

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

***

### showHiddenColumns?

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

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

#### Example

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

***

### showHiddenRows?

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

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

#### Example

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

***

### showHiddenSheets?

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

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

#### Example

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