Contents

init(view:)

Creates and returns an print operation object ready to control the printing of the specified view.

Declaration

init(view: NSView)

Parameters

  • view:

    The view whose contents you want to print.

Return Value

The new NSPrintOperation object. You must run the operation to print the view.

Discussion

The new NSPrintOperation object uses the settings stored in the shared NSPrintInfo object. This method raises an NSPrintOperationExistsException if there is already a print operation in progress; otherwise the returned object is made the current print operation for this thread.

See Also

Related Documentation

Creating the Printing Operation Object