add方法
内容
[
隐藏
]add(self, item)
将一个 HtmlTableLoadOption 添加到此集合中。
返回
添加项目的索引
def add(self, item):
...
范围 | 类型 | 描述 |
---|---|---|
item | HtmlTableLoadOption | 一个 HtmlTableLoadOption |
add(self, table_index)
将 HtmlTableLoadOption 添加到列表中。
返回
def add(self, table_index):
...
范围 | 类型 | 描述 |
---|---|---|
table_index | int | 表索引 |
add(self, table_id)
将 HtmlTableLoadOption 添加到列表中。
返回
def add(self, table_id):
...
范围 | 类型 | 描述 |
---|---|---|
table_id | str | 表 ID |
add(self, table_index, target_sheet_index)
将 HtmlTableLoadOption 添加到列表中。
def add(self, table_index, target_sheet_index):
...
范围 | 类型 | 描述 |
---|---|---|
table_index | int | 表索引 |
target_sheet_index | int | Excel中工作表的目标索引 |
add(self, table_id, target_sheet_index)
将 HtmlTableLoadOption 添加到列表中。
返回
def add(self, table_id, target_sheet_index):
...
范围 | 类型 | 描述 |
---|---|---|
table_id | str | 表 ID |
target_sheet_index | int | Excel中工作表的目标索引 |
add(self, table_index, target_sheet_index, original_sheet_index)
将 HtmlTableLoadOption 添加到列表中。
def add(self, table_index, target_sheet_index, original_sheet_index):
...
范围 | 类型 | 描述 |
---|---|---|
table_index | int | 表索引 |
target_sheet_index | int | Excel中工作表的目标索引 |
original_sheet_index | int | html 中工作表的原始索引 |
add(self, table_id, target_sheet_index, original_sheet_index)
将 HtmlTableLoadOption 添加到列表中。
返回
def add(self, table_id, target_sheet_index, original_sheet_index):
...
范围 | 类型 | 描述 |
---|---|---|
table_id | str | 表 ID |
target_sheet_index | int | Excel中工作表的目标索引 |
original_sheet_index | int | html 中工作表的原始索引 |