MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportItemCollection Class / RemoveAt Method
A zero-based System.Int32 index at which to remove the ReportItem object.
Example

In This Topic
RemoveAt Method (ReportItemCollection)
In This Topic
Removes a ReportItem object from the ReportItemCollection at the specified index.
Syntax
'Declaration
 
Public Sub RemoveAt( _
   ByVal index As Integer _
) 
 

Parameters

index
A zero-based System.Int32 index at which to remove the ReportItem object.
Example
ReportItemCollection collection = new ReportItemCollection();
collection.Add(new TextBox());
collection.RemoveAt(0);
See Also