Item

ShapeCollection indexer (1 of 2)

Obtiene el objeto de forma en el índice específico.

public Shape this[int index] { get; }
ParámetroDescripción
index

Ejemplos


[C#]
// obtener la forma
Shape shape = shapes[shapes.Count -1];

Ver también


ShapeCollection indexer (2 of 2)

Obtiene el objeto de forma por la imagen de forma

public Shape this[string name] { get; }
ParámetroDescripció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