RemoveAt

TextBoxCollection.RemoveAt method

Entfernen Sie ein Textfeld aus der Datei.

public void RemoveAt(int index)
ParameterTypBeschreibung
indexInt32Der Textfeldindex.

Beispiele


[C#]
int index3 = textBoxCollection.Count - 1;
textBoxCollection.RemoveAt(index3);

Siehe auch