[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.PageCollection.RemoveAt

RemoveAt Method

RemoveAt(int)

Removes a Page object from the PageCollection at the specified index.

Declaration
public void RemoveAt(int index)
Parameters
Type Name Description
int index

A zero-based int index at which to remove the Page object.

Implements
Examples
PageCollection collection = new PageCollection();
collection.Add(new Page());
collection.RemoveAt(0);