add method

add(self, item)

Adds one HtmlTableLoadOption into this collection.

Returns

the index of the added item


def add(self, item):
    ...
ParameterTypeDescription
itemHtmlTableLoadOptionone HtmlTableLoadOption

add(self, table_index)

Add a HtmlTableLoadOption to the list.

Returns


def add(self, table_index):
    ...
ParameterTypeDescription
table_indexintTable index

add(self, table_id)

Add a HtmlTableLoadOption to the list.

Returns


def add(self, table_id):
    ...
ParameterTypeDescription
table_idstrTable ID

add(self, table_index, target_sheet_index)

Add a HtmlTableLoadOption to the list.


def add(self, table_index, target_sheet_index):
    ...
ParameterTypeDescription
table_indexintTable index
target_sheet_indexintThe target index of worksheet in Excel

add(self, table_id, target_sheet_index)

Add a HtmlTableLoadOption to the list.

Returns


def add(self, table_id, target_sheet_index):
    ...
ParameterTypeDescription
table_idstrTable ID
target_sheet_indexintThe target index of worksheet in Excel

add(self, table_index, target_sheet_index, original_sheet_index)

Add a HtmlTableLoadOption to the list.


def add(self, table_index, target_sheet_index, original_sheet_index):
    ...
ParameterTypeDescription
table_indexintTable index
target_sheet_indexintThe target index of worksheet in Excel
original_sheet_indexintThe original index of worksheet in the html

add(self, table_id, target_sheet_index, original_sheet_index)

Add a HtmlTableLoadOption to the list.

Returns


def add(self, table_id, target_sheet_index, original_sheet_index):
    ...
ParameterTypeDescription
table_idstrTable ID
target_sheet_indexintThe target index of worksheet in Excel
original_sheet_indexintThe original index of worksheet in the html

See Also