AddRectangle

ShapeCollection.AddRectangle method

Agrega un RectangleShape a la hoja de trabajo.

public RectangleShape AddRectangle(int upperLeftRow, int top, int upperLeftColumn, int left, 
    int height, int width)
ParámetroEscribeDescripción
upperLeftRowInt32Índice de la fila superior izquierda.
topInt32Representa el desplazamiento vertical de RectangleShape desde su fila izquierda, en unidades de píxel.
upperLeftColumnInt32Índice de la columna superior izquierda.
leftInt32Representa el desplazamiento horizontal de RectangleShape desde su columna izquierda, en unidades de píxel.
heightInt32Representa la altura de RectangleShape, en unidades de píxel.
widthInt32Representa el ancho de RectangleShape, en unidades de píxel.

Valor_devuelto

Un objeto RectangleShape.

Ejemplos


[C#]
// agregar un rectángulo
RectangleShape rectangleShape = shapes.AddRectangle(2, 0, 2, 0, 130, 130);

Ver también