C# 클래스 Eto.Forms.TextArea

상속: Eto.Forms.TextControl
파일 보기 프로젝트 열기: picoe/Eto 1 사용 예제들

Private Properties

프로퍼티 타입 설명
TextArea Eto.Drawing

공개 메소드들

메소드 설명
Append ( string text, bool scrollToCursor = false ) : void

Append the specified text to the control and optionally scrolls to make the inserted text visible.

This is an optimized way of inserting text into a TextArea when its content gets large.

SelectAll ( ) : void

Selects all text.

When setting the selection, the control will be focussed and the associated keyboard may appear on mobile platforms.

보호된 메소드들

메소드 설명
GetCallback ( ) : object

Gets an instance of an object used to perform callbacks to the widget from handler implementations

OnCaretIndexChanged ( EventArgs e ) : void

Raises the CaretIndexChanged event.

OnSelectionChanged ( EventArgs e ) : void

Raises the SelectionChanged event.

비공개 메소드들

메소드 설명
TextArea ( ) : Eto.Drawing

메소드 상세

Append() 공개 메소드

Append the specified text to the control and optionally scrolls to make the inserted text visible.
This is an optimized way of inserting text into a TextArea when its content gets large.
public Append ( string text, bool scrollToCursor = false ) : void
text string Text to insert.
scrollToCursor bool If set to true, scroll to the inserted text.
리턴 void

GetCallback() 보호된 메소드

Gets an instance of an object used to perform callbacks to the widget from handler implementations
protected GetCallback ( ) : object
리턴 object

OnCaretIndexChanged() 보호된 메소드

Raises the CaretIndexChanged event.
protected OnCaretIndexChanged ( EventArgs e ) : void
e System.EventArgs Event arguments.
리턴 void

OnSelectionChanged() 보호된 메소드

Raises the SelectionChanged event.
protected OnSelectionChanged ( EventArgs e ) : void
e System.EventArgs Event arguments.
리턴 void

SelectAll() 공개 메소드

Selects all text.
When setting the selection, the control will be focussed and the associated keyboard may appear on mobile platforms.
public SelectAll ( ) : void
리턴 void