rectForPage(_:)
Implemented by subclasses to determine the portion of the view to be printed for the specified page number.
Declaration
func rectForPage(_ page: Int) -> NSRectParameters
- page:
An integer indicating a page number. Page numbers are one-based—that is pages run from one to N.
Return Value
A rectangle defining the region of the view to be printed for pageNumber. This method returns NSZeroRect if pageNumber is outside the view’s bounds.
Discussion
If the view responded true to an earlier knowsPageRange(_:) message, this method is invoked for each page it specified in the out parameters of that message. The view is later made to display this rectangle in order to generate the image for this page.
If an NSView object responds false to knowsPageRange(_:), this method isn’t invoked by the printing mechanism.