TextBoxCollection.RemoveAt

TextBoxCollection.RemoveAt method

Remove a text box from the file.

public void RemoveAt(int index)
ParameterTypeDescription
indexInt32The text box index.

Examples


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

See Also