get方法
get(self, cell_name)
获取单元格的 SmartTagCollection
对象。
返回
返回单元格的 SmartTagCollection
对象。
如果单元格上没有任何智能标签,则返回 null。
def get(self, cell_name):
...
范围 | 类型 | 描述 |
---|---|---|
cell_name | str | 单元格的名称。 |
get(self, row, column)
通过 .Net 添加 API for Python,因为 this[int, int] 不受支持
返回
返回单元格的 SmartTagCollection
对象。
如果单元格上没有任何智能标签,则返回 null。
def get(self, row, column):
...
范围 | 类型 | 描述 |
---|---|---|
row | int | 单元格的行索引。 |
column | int | 单元格的列索引 |