C# 클래스 Monobjc.AppKit.NSPrintPanel

파일 보기 프로젝트 열기: Monobjc/monobjc 1 사용 예제들

공개 메소드들

메소드 설명
BeginSheetWithPrintInfoModalForWindowDelegateDidEndSelectorContextInfo ( NSPrintInfo printInfo, NSWindow docWindow, SheetDidEndReturnCodeContextInfoEventHandler modalDelegate, IntPtr contextInfo ) : void

Displays a Print panel sheet and runs it modally for the specified window.

Original signature is '- (void)beginSheetWithPrintInfo:(NSPrintInfo *)printInfo modalForWindow:(NSWindow *)docWindow delegate:(id)modalDelegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo'

Available in Mac OS X v10.0 and later.

메소드 상세

BeginSheetWithPrintInfoModalForWindowDelegateDidEndSelectorContextInfo() 공개 메소드

Displays a Print panel sheet and runs it modally for the specified window.

Original signature is '- (void)beginSheetWithPrintInfo:(NSPrintInfo *)printInfo modalForWindow:(NSWindow *)docWindow delegate:(id)modalDelegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo'

Available in Mac OS X v10.0 and later.

public BeginSheetWithPrintInfoModalForWindowDelegateDidEndSelectorContextInfo ( NSPrintInfo printInfo, NSWindow docWindow, SheetDidEndReturnCodeContextInfoEventHandler modalDelegate, IntPtr contextInfo ) : void
printInfo NSPrintInfo The printing information for the current job.
docWindow NSWindow The window on which to display the sheet.
modalDelegate SheetDidEndReturnCodeContextInfoEventHandler A modal delegate object assigned to handle the closing of the Print panel sheet.
contextInfo System.IntPtr A pointer to context data the didEndSelector method needs to process the sheet. This data is user-defined and may be NULL.
리턴 void