HtmlTableLoadOption

HtmlTableLoadOption class

Represents the option when import table from html.

class HtmlTableLoadOption;

Constructors

NameDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
tableIndexnumberGet or set the index of table to import from html.
idstringGet or set the id of table to import from html
namestringGet or set the name of table to import from html
originalSheetIndexnumberGet or set the original index of worksheet in the html.
targetSheetIndexnumberGet or set the target index of worksheet where the table is to be located.
tableToListObjectbooleanIndicates 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;