HtmlTableLoadOption
HtmlTableLoadOption class
Represents the option when import table from html.
class HtmlTableLoadOption;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
getTableIndex() | Get or set the index of table to import from html. |
setTableIndex(number) | Get or set the index of table to import from html. |
getId() | Get or set the id of table to import from html |
setId(string) | Get or set the id of table to import from html |
getName() | Get or set the name of table to import from html |
setName(string) | Get or set the name of table to import from html |
getOriginalSheetIndex() | Get or set the original index of worksheet in the html. |
setOriginalSheetIndex(number) | Get or set the original index of worksheet in the html. |
getTargetSheetIndex() | Get or set the target index of worksheet where the table is to be located. |
setTargetSheetIndex(number) | Get or set the target index of worksheet where the table is to be located. |
getTableToListObject() | Indicates whether generate list objects from imported table. The default value is false. |
setTableToListObject(boolean) | Indicates whether generate list objects from imported table. The default value is false. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
getTableIndex()
Get or set the index of table to import from html.
getTableIndex() : number;
setTableIndex(number)
Get or set the index of table to import from html.
setTableIndex(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getId()
Get or set the id of table to import from html
getId() : string;
setId(string)
Get or set the id of table to import from html
setId(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getName()
Get or set the name of table to import from html
getName() : string;
setName(string)
Get or set the name of table to import from html
setName(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getOriginalSheetIndex()
Get or set the original index of worksheet in the html.
getOriginalSheetIndex() : number;
setOriginalSheetIndex(number)
Get or set the original index of worksheet in the html.
setOriginalSheetIndex(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getTargetSheetIndex()
Get or set the target index of worksheet where the table is to be located.
getTargetSheetIndex() : number;
setTargetSheetIndex(number)
Get or set the target index of worksheet where the table is to be located.
setTargetSheetIndex(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getTableToListObject()
Indicates whether generate list objects from imported table. The default value is false.
getTableToListObject() : boolean;
setTableToListObject(boolean)
Indicates whether generate list objects from imported table. The default value is false.
setTableToListObject(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;