HtmlTableLoadOption
Contents
[
Hide
]HtmlTableLoadOption class
Represents the option when import table from html.
class HtmlTableLoadOption;
Constructors
| Name | Description |
|---|---|
| constructor() | Default Constructor. |
Properties
| Property | Type | Description |
|---|---|---|
| tableIndex | number | Get or set the index of table to import from html. |
| id | string | Get or set the id of table to import from html |
| name | string | Get or set the name of table to import from html |
| originalSheetIndex | number | Get or set the original index of worksheet in the html. |
| targetSheetIndex | number | Get or set the target index of worksheet where the table is to be located. |
| tableToListObject | boolean | Indicates whether generate list objects from imported table. The default value is false. |
constructor()
Default Constructor.
constructor();
tableIndex
Get or set the index of table to import from html.
tableIndex : number;
id
Get or set the id of table to import from html
id : string;
name
Get or set the name of table to import from html
name : string;
originalSheetIndex
Get or set the original index of worksheet in the html.
originalSheetIndex : number;
targetSheetIndex
Get or set the target index of worksheet where the table is to be located.
targetSheetIndex : number;
tableToListObject
Indicates whether generate list objects from imported table. The default value is false.
tableToListObject : boolean;