AddListBox

ShapeCollection.AddListBox method

Fügt dem Arbeitsblatt eine ListBox hinzu.

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

Rückgabewert

Ein ListBox-Objekt.

Beispiele


[C#]
//Listenfeld hinzufügen
ListBox listBox = shapes.AddListBox(1, 0, 1, 0, 100, 50);

Siehe auch