Item
Contenuti
[
Nascondere
]ShapeCollection indexer (1 of 2)
Ottiene l’oggetto forma all’indice specifico.
public Shape this[int index] { get; }
Parametro | Descrizione |
---|---|
index |
Esempi
[C#]
//ottengo la forma
Shape shape = shapes[shapes.Count -1];
Guarda anche
- class Shape
- class ShapeCollection
- spazio dei nomi Aspose.Cells.Drawing
- assemblea Aspose.Cells
ShapeCollection indexer (2 of 2)
Ottiene l’oggetto forma tramite l’immagine forma
public Shape this[string name] { get; }
Parametro | Descrizione |
---|---|
name |
Esempi
[C#]
//aggiungi una forma
shapes.AddRectangle(2, 0, 2, 0, 130, 130);
//ottengo la forma
Shape shape1 = shapes["Rectangle 1"];
if(shape1 != null)
{
//Ottenuto la forma denominata 'Rettangolo 1'.
}
Guarda anche
- class Shape
- class ShapeCollection
- spazio dei nomi Aspose.Cells.Drawing
- assemblea Aspose.Cells