ig.excel.PageBreakCollection`1
Base class for the collections of horizontal and vertical page breaks on a PageBreakCollection`1.worksheet.
Dependencies
jquery-1.4.4.js
infragistics.util.js
infragistics.ext_collections.js
infragistics.ext_collectionsExtended.js
infragistics.ext_io.js
infragistics.ext_text.js
infragistics.ext_core.js
infragistics.documents.core_core.js
infragistics.ext_ui.js
The current widget has no options.
The current widget has no events.
-
add
- .add( pageBreak:ig.excel.T );
Adds a page break to the PageBreakCollection`1.worksheet.
- pageBreak
- Type:ig.excel.T
- The page break to add to the Worksheet.
Exceptions
Exception Description ig.ArgumentNullException Occurs when pageBreak is null. ig.ArgumentException Occurs when pageBreak overlaps with another page break already in the collection. -
clear
- .clear( );
Clears the collection of page breaks.
-
contains
- .contains( pageBreak:ig.excel.T );
- Return Type:
- boolean
- Return Type Description:
- True if the page break is on the Worksheet; False otherwise.
Determines whether the specified page break exists on the PageBreakCollection`1.worksheet.
- pageBreak
- Type:ig.excel.T
- The page break to test.
Exceptions
Exception Description ig.ArgumentNullException Occurs when pageBreak is null. -
count
- .count( );
Gets the number of page breaks in this collection.
-
indexOf
- .indexOf( pageBreak:ig.excel.T );
- Return Type:
- number
- Return Type Description:
- The 0-based index of the page break or -1 if the page break is no tin the collection.
Gets the 0-based index of the specified page break.
- pageBreak
- Type:ig.excel.T
- The page break for which the index should be obtained.
Exceptions
Exception Description ig.ArgumentNullException Occurs when pageBreak is null. -
item
- .item( index:number );
- Return Type:
- ig.excel.T
- Return Type Description:
- A PageBreak-derived instance.
Gets the page break at the specified index.
- index
- Type:number
- The index of the page break to get.
Exceptions
Exception Description ig.ArgumentOutOfRangeException Occurs when index is less than 0 or greater than of equal to PageBreakCollection`1.count. -
remove
- .remove( pageBreak:ig.excel.T );
- Return Type:
- boolean
- Return Type Description:
- True if the page break was contained on the Worksheet before removal; False otherwise.
Removes the specified page break from the PageBreakCollection`1.worksheet.
- pageBreak
- Type:ig.excel.T
- The page break which should be removed.
Exceptions
Exception Description ig.ArgumentNullException Occurs when pageBreak is null. -
removeAt
- .removeAt( index:number );
Removes the page break at the specified index.
- index
- Type:number
- The 0-based index of the page break to remove.
Exceptions
Exception Description ig.ArgumentOutOfRangeException Occurs when index is less than zero or greater than or equal to the number of page breaks in the collection.