C# 클래스 ICSharpCode.TextEditor.TextAreaClipboardHandler

파일 보기 프로젝트 열기: Clancey/MonoMac.Windows.Form 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
GetClipboardContainsText ClipboardContainsTextDelegate

공개 메소드들

메소드 설명
Copy ( object sender, EventArgs e ) : void
Cut ( object sender, EventArgs e ) : void
Delete ( object sender, EventArgs e ) : void
Paste ( object sender, EventArgs e ) : void
SelectAll ( object sender, EventArgs e ) : void
TextAreaClipboardHandler ( TextArea textArea ) : System

보호된 메소드들

메소드 설명
OnCopyText ( CopyTextEventArgs e ) : void

비공개 메소드들

메소드 설명
CopyTextToClipboard ( string stringToCopy ) : bool
CopyTextToClipboard ( string stringToCopy, bool asLine ) : bool
DocumentSelectionChanged ( object sender, EventArgs e ) : void
SafeSetClipboard ( object dataObject ) : void

메소드 상세

Copy() 공개 메소드

public Copy ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void

Cut() 공개 메소드

public Cut ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void

Delete() 공개 메소드

public Delete ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void

OnCopyText() 보호된 메소드

protected OnCopyText ( CopyTextEventArgs e ) : void
e CopyTextEventArgs
리턴 void

Paste() 공개 메소드

public Paste ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void

SelectAll() 공개 메소드

public SelectAll ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void

TextAreaClipboardHandler() 공개 메소드

public TextAreaClipboardHandler ( TextArea textArea ) : System
textArea TextArea
리턴 System

프로퍼티 상세

GetClipboardContainsText 공개적으로 정적으로 프로퍼티

Is called when CachedClipboardContainsText should be updated. If this property is null (the default value), the text editor uses System.Windows.Forms.Clipboard.ContainsText.
This property is useful if you want to prevent the default Clipboard.ContainsText behaviour that waits for the clipboard to be available - the clipboard might never become available if it is owned by a process that is paused by the debugger.
public static ClipboardContainsTextDelegate GetClipboardContainsText
리턴 ClipboardContainsTextDelegate