AddRectangle

ShapeCollection.AddRectangle method

Ajoute un RectangleShape à la feuille de calcul.

public RectangleShape AddRectangle(int upperLeftRow, int top, int upperLeftColumn, int left, 
    int height, int width)
ParamètreTaperLa description
upperLeftRowInt32Index de ligne en haut à gauche.
topInt32Représente le décalage vertical de RectangleShape par rapport à sa ligne de gauche, en unité de pixel.
upperLeftColumnInt32Index de la colonne en haut à gauche.
leftInt32Représente le décalage horizontal de RectangleShape par rapport à sa colonne de gauche, en pixels.
heightInt32Représente la hauteur de RectangleShape, en unité de pixel.
widthInt32Représente la largeur de RectangleShape, en unité de pixel.

Return_Value

Un objet RectangleShape.

Exemples


[C#]
// ajoute un rectangle
RectangleShape rectangleShape = shapes.AddRectangle(2, 0, 2, 0, 130, 130);

Voir également