RemoveAt Method (ReportItemCollection)
Removes a
ReportItem object from the
ReportItemCollection at the specified index.
public void RemoveAt(
int
)
'Declaration
Public Sub RemoveAt( _
ByVal As Integer _
)
Parameters
- index
- A zero-based System.Int32 index at which to remove the ReportItem object.
ReportItemCollection collection = new ReportItemCollection();
collection.Add(new TextBox());
collection.RemoveAt(0);