PrintPagesCollection
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
Initializes a new instance of the PrintPagesCollection class. Each PrintPageColumnsCollection represents a separate page.
public PrintPagesCollection()
Properties
Gets the count of the PrintPageColumnsCollection instances in this collection.
public int Count { get; }
The count.
Gets or sets the PrintPageColumnsCollection at the specified index.
public PrintPageColumnsCollection this[int index] { get; set; }
The index.
Property Value:The PrintPageColumnsCollection index.
Methods
Adds the specified columns as a new PrintPageColumnsCollection. The PrintPageColumnsCollection represents a separate page.
public int Add(params GridViewColumn[] columns)
The columns.
Returns:Clears all PrintPageColumnsCollection instances in this collection.
public void Clear()
Returns an enumerator that iterates through a collection.
public IEnumerator GetEnumerator()
An IEnumerator object that can be used to iterate through the collection.
Implements:
Inserts the specified PrintPageColumnsCollection to the specified index. Each PrintPageColumnsCollection represents a separate page.
public void Insert(int index, params GridViewColumn[] columns)
The index.
columnsGridViewColumn[]The columns.
Removes the PrintPageColumnsCollection at the specified index.