add Methode

add(upper_left_row, upper_left_column, height, width)

Fügt der Sammlung ein Textfeld hinzu.

Kehrt zurück

TextBox Objektindex.

def add(self, upper_left_row, upper_left_column, height, width):
    ...
ParameterTypBeschreibung
upper_left_rowintZeilenindex oben links.
upper_left_columnintSpaltenindex oben links.
heightintHöhe des Textfelds in Pixeleinheiten.
widthintBreite des Textfelds in Pixeleinheiten.

Beispiel


# add a TextBox
index2 = textBoxCollection.add(1, 1, 50, 100)

Siehe auch