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

In This Topic
RemoveAt Method (PageCollection)
In This Topic
Removes a Page object from the PageCollection 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 Page object.
Example
PageCollection collection = new PageCollection();
collection.Add(new Page());
collection.RemoveAt(0);
See Also