Exemple #1
0
 public void PrepareEditingControlForEdit(bool selectAll)
 {
     if (selectAll)
     {
         InnerTextBox.SelectAll();
     }
     else
     {
         // Do not select all the text, but
         // position the caret at the end of the text
         InnerTextBox.SelectionStart = InnerTextBox.Text.Length;
     }
 }
Exemple #2
0
 public void SelectAll()
 {
     InnerTextBox.SelectAll();
 }