BeginPageLayoutArgs constructor

BeginPageLayoutArgs(
  1. Rect bounds,
  2. PdfPage page
)

Initialize an instance of BeginPageLayoutArgs.

Implementation

BeginPageLayoutArgs(Rect bounds, PdfPage page) {
  _bounds = PdfRectangle.fromRect(bounds);
  _page = page;
}