Windows.UI.Xaml.Controls.TextBox.SelectAll C# (CSharp) Method

SelectAll() public method

public SelectAll ( ) : void
return void
		public extern void SelectAll();
		public extern Rect GetRectFromCharacterIndex([In] int charIndex, [In] bool trailingEdge);

Usage Example

 private void selectData(TextBox sender, RoutedEventArgs e)
 {
     sender.SelectAll();
 }
All Usage Examples Of Windows.UI.Xaml.Controls.TextBox::SelectAll