Creates and returns a new NSPrintOperation object ready to control the copying of EPS graphics from the specified view.
Original signature is '+ (NSPrintOperation *)EPSOperationWithView:(NSView *)aView insideRect:(NSRect)rect toData:(NSMutableData *)data'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
public static NSPrintOperation EPSOperationWithViewInsideRectToData( NSView aView, NSRect rect, NSMutableData data )
Public Shared Function EPSOperationWithViewInsideRectToData ( _ aView As NSView, _ rect As NSRect, _ data As NSMutableData _ ) As NSPrintOperation
public: static NSPrintOperation^ EPSOperationWithViewInsideRectToData( NSView^ aView, NSRect rect, NSMutableData^ data )

- aView (NSView)
- The view containing the data to be turned into EPS data.
- rect (NSRect)
- The portion of the view (specified in points in the view's coordinate space) to be rendered as EPS data.
- data (NSMutableData)
- An empty NSMutableData object. After the job is run, this object contains the EPS data.

The new NSPrintOperation object. You must run the operation to generate the EPS data.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)