Class PrintPagesCollection
Represents a collection of column collections.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class PrintPagesCollection : IEnumerable
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.
Declaration
public int Count { get; }
Property Value
System.Int32
The count. |
Item[Int32]
Gets or sets the PrintPageColumnsCollection at the specified index.
Declaration
public PrintPageColumnsCollection this[int index] { get; set; }
Parameters
System.Int32
index
The index. |
Property Value
PrintPageColumnsCollection
The PrintPageColumnsCollection index. |
Methods
Add(GridViewColumn[])
Adds the specified columns as a new PrintPageColumnsCollection. The PrintPageColumnsCollection represents a separate page.
Declaration
public int Add(params GridViewColumn[] columns)
Parameters
GridViewColumn[]
columns
The columns. |
Returns
System.Int32
|
Clear()
GetEnumerator()
Returns an enumerator that iterates through a collection.
Declaration
public IEnumerator GetEnumerator()
Returns
System.Collections.IEnumerator
An System.Collections.IEnumerator object that can be used to iterate through the collection. |
Implements
Insert(Int32, 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
System.Int32
index
The index. |
GridViewColumn[]
columns
The columns. |
RemoveAt(Int32)
Removes the PrintPageColumnsCollection at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
System.Int32
index
The index. |