Add

TextBoxCollection.Add method

Fügt der Sammlung ein Textfeld hinzu.

public int Add(int upperLeftRow, int upperLeftColumn, int height, int width)
ParameterTypBeschreibung
upperLeftRowInt32Zeilenindex oben links.
upperLeftColumnInt32Spaltenindex oben links.
heightInt32Höhe des Textfelds in Pixeleinheiten.
widthInt32Breite des Textfelds in Pixeleinheiten.

Rückgabewert

TextBox Objektindex.

Beispiele


[C#]
// füge eine TextBox hinzu
int index2 = textBoxCollection.Add(1, 1, 50, 100);

Siehe auch