RemoveAt

TextBoxCollection.RemoveAt method

Ta bort en textruta från filen.

public void RemoveAt(int index)
ParameterTypBeskrivning
indexInt32Textrutans index.

Exempel


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

Se även