Item
Contenido
[
Ocultar
]ShapeCollection indexer (1 of 2)
Obtiene el objeto de forma en el índice específico.
public Shape this[int index] { get; }
Parámetro | Descripción |
---|---|
index |
Ejemplos
[C#]
// obtener la forma
Shape shape = shapes[shapes.Count -1];
Ver también
- class Shape
- class ShapeCollection
- espacio de nombres Aspose.Cells.Drawing
- asamblea Aspose.Cells
ShapeCollection indexer (2 of 2)
Obtiene el objeto de forma por la imagen de forma
public Shape this[string name] { get; }
Parámetro | Descripción |
---|---|
name |
Ejemplos
[C#]
//añadir una forma
shapes.AddRectangle(2, 0, 2, 0, 130, 130);
// obtener la forma
Shape shape1 = shapes["Rectangle 1"];
if(shape1 != null)
{
//Obtuve la forma llamada 'Rectángulo 1'.
}
Ver también
- class Shape
- class ShapeCollection
- espacio de nombres Aspose.Cells.Drawing
- asamblea Aspose.Cells