Item
ShapeCollection indexer (1 of 2)
Belirli bir dizindeki şekil nesnesini alır.
public Shape this[int index] { get; }
Parametre | Tanım |
---|---|
index |
Örnekler
[C#]
//şekli al
Shape shape = shapes[shapes.Count -1];
Ayrıca bakınız
- class Shape
- class ShapeCollection
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells
ShapeCollection indexer (2 of 2)
Şekil nesnesini şekle göre alır image
public Shape this[string name] { get; }
Parametre | Tanım |
---|---|
name |
Örnekler
[C#]
//şekil ekle
shapes.AddRectangle(2, 0, 2, 0, 130, 130);
//şekli al
Shape shape1 = shapes["Rectangle 1"];
if(shape1 != null)
{
//'Dikdörtgen 1' adlı şekli aldık.
}
Ayrıca bakınız
- class Shape
- class ShapeCollection
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells