ClassPrintPagesCollection
Represents a collection of column collections.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class PrintPagesCollection : IEnumerable
Inheritance: objectPrintPagesCollection
Implements:
Constructors
PrintPagesCollection()
Initializes a new instance of the PrintPagesCollection class. Each PrintPageColumnsCollection represents a separate page.
Declaration
public PrintPagesCollection()
Properties
Count
Gets the count of the PrintPageColumnsCollection instances in this collection.
this[int]
Gets or sets the PrintPageColumnsCollection at the specified index.
Declaration
public PrintPageColumnsCollection this[int index] { get; set; }
Parameters
index
The index.
Property Value
The PrintPageColumnsCollection index.
Methods
Add(params GridViewColumn[])
Adds the specified columns as a new PrintPageColumnsCollection. The PrintPageColumnsCollection represents a separate page.
Declaration
public int Add(params GridViewColumn[] columns)
Parameters
columns
The columns.
Returns
Clear()
Clears all PrintPageColumnsCollection instances in this collection.
Declaration
public void Clear()
GetEnumerator()
Returns an enumerator that iterates through a collection.
Declaration
public IEnumerator GetEnumerator()
Returns
An IEnumerator object that can be used to iterate through the collection.
Implements
Insert(int, params GridViewColumn[])
Inserts the specified PrintPageColumnsCollection to the specified index. Each PrintPageColumnsCollection represents a separate page.
Declaration
public void Insert(int index, params GridViewColumn[] columns)
Parameters
index
The index.
columns
The columns.
RemoveAt(int)
Removes the PrintPageColumnsCollection at the specified index.