ExportRangeToJsonOptions
Contents
[
Hide
]ExportRangeToJsonOptions class
Indicates the options that exporting range to json.
class ExportRangeToJsonOptions;
Constructors
| Name | Description |
|---|---|
| constructor() | Default Constructor. |
Properties
| Property | Type | Description |
|---|---|---|
| hasHeaderRow | boolean | Indicates whether the range contains header row. |
| exportAsString | boolean | Exports the string value of the cells to json. |
| exportEmptyCells | boolean | Indicates whether exporting empty cells as null. |
| indent | string | Indicates the indent. |
constructor()
Default Constructor.
constructor();
hasHeaderRow
Indicates whether the range contains header row.
hasHeaderRow : boolean;
exportAsString
Exports the string value of the cells to json.
exportAsString : boolean;
exportEmptyCells
Indicates whether exporting empty cells as null.
exportEmptyCells : boolean;
indent
Indicates the indent.
indent : string;
Remarks
If the indent is null or empty, the exported json is not formatted.