AddGroupBox

ShapeCollection.AddGroupBox method

Fügt dem Arbeitsblatt eine GroupBox hinzu.

public GroupBox AddGroupBox(int upperLeftRow, int top, int upperLeftColumn, int left, int height, 
    int width)
ParameterTypBeschreibung
upperLeftRowInt32Zeilenindex oben links.
topInt32Stellt den vertikalen Versatz von GroupBox von seiner linken Zeile in Pixeleinheiten dar.
upperLeftColumnInt32Spaltenindex oben links.
leftInt32Repräsentiert den horizontalen Versatz von GroupBox von seiner linken Spalte in Pixeleinheiten.
heightInt32Repräsentiert die Höhe der GroupBox in Pixeleinheiten.
widthInt32Repräsentiert die Breite der GroupBox in Pixeleinheiten.

Rückgabewert

Ein GroupBox-Objekt.

Beispiele


[C#]
//Gruppenfeld hinzufügen
GroupBox groupBox = shapes.AddGroupBox(1, 0, 1, 0, 100, 50);

Siehe auch