描述

Shapes 集合中返回单个 Shape 对象。


返回 Shape 对象。


语法

expression.Item((Index))

部  分 描  述
expression 必需。该表达式返回 Shapes 集合。
Index 必需。Variant 类型。Shapes 集合中要返回的单个 Shape 对象的名称或索引号。


说明

Item 方法是集合的默认方法。

例如,下面两行代码是等价的:
ActivePresentation.Slides(1).shapes.Item(1)
ActivePresentation.Slides(1).shapes(1)