Eto.Forms.TextArea.SelectAll C# (CSharp) 메소드

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
		public void SelectAll()
		{
			Handler.SelectAll();
		}

Usage Example

예제 #1
0
		Control SelectAll(TextArea text)
		{
			var control = new Button { Text = "Select All" };
			control.Click += (sender, e) => {
				text.SelectAll();
				text.Focus();
			};
			return control;
		}