[]
        
(Showing Draft Content)

IHPageBreaks

Interface IHPageBreaks

All Superinterfaces:
Iterable<IHPageBreak>

public interface IHPageBreaks extends Iterable<IHPageBreak>
Represents the collection of horizontal page breaks within the print area.
  • Method Summary

    Modifier and Type
    Method
    Description
    add(IRange before)
    Adds a horizontal page break within the print area.
    get(int index)
    Gets the IHPageBreak by index.
    int
    Returns the number of objects in the collection.

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator
  • Method Details

    • getCount

      int getCount()
      Returns the number of objects in the collection.
    • get

      IHPageBreak get(int index)
      Gets the IHPageBreak by index.
      Parameters:
      index - The index of the collection.
      Returns:
      Returns the IHPageBreak object.
    • add

      IHPageBreak add(IRange before)
      Adds a horizontal page break within the print area.
      Parameters:
      before - Required IRangeThe range above which the new page break will be added.
      Returns:
      Returns the new IHPageBreak object.