Skip to content
本页内容

Count (属性)

返回一个 Integer 值,它代表集合中对象的数量。

示例

python
#本示例显示活动工作表中第一个形状的节点数量
def test():
    shapes = ActiveSheet.Shapes
    print(shapes.Item(1).Nodes.Count)