Item
ShapeCollection indexer (1 of 2)
获取特定索引处的形状对象。
public Shape this[int index] { get; }
范围 | 描述 |
---|---|
index |
例子
[C#]
//获取形状
Shape shape = shapes[shapes.Count -1];
也可以看看
- class Shape
- class ShapeCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
ShapeCollection indexer (2 of 2)
通过形状图像获取形状对象
public Shape this[string name] { get; }
范围 | 描述 |
---|---|
name |
例子
[C#]
//添加一个形状
shapes.AddRectangle(2, 0, 2, 0, 130, 130);
//获取形状
Shape shape1 = shapes["Rectangle 1"];
if(shape1 != null)
{
//得到名为“矩形1”的形状。
}
也可以看看
- class Shape
- class ShapeCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells