HorizontalPageBreakCollection Class
Collection of horizontal page breaks (HorizontalPageBreak).
public sealed class HorizontalPageBreakCollection : PageBreakCollection<HorizontalPageBreak>, IEnumerable<HorizontalPageBreak>, IEnumerable
Public NotInheritable Class HorizontalPageBreakCollection
Inherits PageBreakCollection(Of HorizontalPageBreak)
Implements IEnumerable(Of HorizontalPageBreak), IEnumerable
- Inheritance:
- System.ObjectHorizontalPageBreakCollection
Properties
Item[Int32]
Gets or sets the horizontal page break at the specified index.
public HorizontalPageBreak this[int index] { get; set; }
Public Property Item(index As Integer) As HorizontalPageBreak
Parameters
index
- System.Int32
Property Value
Methods
Add(Int32)
Adds a new horizontal page break above the specified row.
Parameters
row
- System.Int32
The zero-based index of the row.
Add(Int32, Int32, Int32)
Adds a new horizontal page break above the specified row and within specified columns.
public void Add(int row, int firstColumn, int lastColumn)
Public Sub Add(row As Integer, firstColumn As Integer, lastColumn As Integer)
Parameters
row
- System.Int32
The zero-based index of the row.
firstColumn
- System.Int32
The zero-based index of the first column.
lastColumn
- System.Int32
The zero-based index of the last column.
Inherited Properties
Count | Gets the number of page breaks contained in the collection. (Inherited from PageBreakCollection) |
Inherited Methods
Clear() | Removes all page breaks. (Inherited from PageBreakCollection) |
RemoveAt(System.Int32) | Removes the page break at the specified index. (Inherited from PageBreakCollection) |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable