TextBoxBase.SelectAll Método

Definición

Selecciona todo el texto del cuadro de texto.

public:
 void SelectAll();
public void SelectAll ();
member this.SelectAll : unit -> unit
Public Sub SelectAll ()

Ejemplos

En el ejemplo de código siguiente se usa TextBox, una clase derivada, para determinar si hay texto seleccionado en el control . Si no se selecciona texto, se realiza una llamada al SelectAll método antes de copiar el contenido del control en el Portapapeles. En este ejemplo se requiere que se haya creado un TextBox objeto denominado textBox1.

public:
   void CopyAllMyText()
   {
      // Determine if any text is selected in the TextBox control.
      if ( textBox1->SelectionLength == 0 )
      {
         // Select all text in the text box.
         textBox1->SelectAll();
      }

      // Copy the contents of the control to the Clipboard.
      textBox1->Copy();
   }
public void CopyAllMyText()
 {
    // Determine if any text is selected in the TextBox control.
    if(textBox1.SelectionLength == 0)
       // Select all text in the text box.
       textBox1.SelectAll();
    
    // Copy the contents of the control to the Clipboard.
    textBox1.Copy();
 }
Public Sub CopyAllMyText()
    ' Determine if any text is selected in the TextBox control.
    If textBox1.SelectionLength = 0 Then
        ' Select all text in the text box.
        textBox1.SelectAll()
    End If 
    ' Copy the contents of the control to the Clipboard.
    textBox1.Copy()
End Sub

Comentarios

Este método le permite seleccionar todo el texto dentro del control. Puede usar este método junto con el Cut método , que requiere que el texto se seleccione en el control , para cortar todo el contenido del control y pegarlo en el Portapapeles.

Se aplica a