resize方法
resize(start_row, start_column, end_row, end_column, has_headers)
调整列表对象的范围。
def resize(self, start_row, start_column, end_row, end_column, has_headers):
...
范围 | 类型 | 描述 |
---|---|---|
start_row | int | 新范围的起始行索引。 |
start_column | int | 新范围的起始列索引。 |
end_row | int | 新范围的结束行索引。 |
end_column | int | 新范围的结束列索引。 |
has_headers | bool | ListObject 是否有标题。 |