[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IHPageBreaks

Interface IHPageBreaks

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents the collection of horizontal page breaks within the print area.

public interface IHPageBreaks : IEnumerable
Inherited Members
System.Collections.IEnumerable.GetEnumerator()

Properties

Count

Returns the number of objects in the collection.

int Count { get; }

Property Value

int

this[int]

Gets the IHPageBreak by index.

IHPageBreak this[int Index] { get; }

Parameters

Index int

The index of the collection.

Property Value

IHPageBreak

Returns the IHPageBreak object.

Methods

Add(IRange)

Adds a horizontal page break within the print area.

IHPageBreak Add(IRange Before)

Parameters

Before IRange

Required IRangeThe range above which the new page break will be added.

Returns

IHPageBreak

Returns the new IHPageBreak object.