paginateBounds property

Rect paginateBounds

Gets the bounds on the next page.

Implementation

Rect get paginateBounds => _paginateBounds.rect;
void paginateBounds=(Rect value)

Sets the bounds on the next page.

Implementation

set paginateBounds(Rect value) {
  _paginateBounds = PdfRectangle.fromRect(value);
  _boundsSet = true;
}