TextBoxBase.SelectAll Methode

Definition

Markiert den gesamten Text im Textfeld.

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

Beispiele

Im folgenden Codebeispiel wird eine abgeleitete Klasse verwendet TextBox, um festzustellen, ob text im Steuerelement ausgewählt ist. Wenn kein Text ausgewählt ist, wird ein Aufruf an die SelectAll Methode vorgenommen, bevor der Inhalt des Steuerelements in die Zwischenablage kopiert wird. In diesem Beispiel ist erforderlich, dass ein TextBox benannter Name textBox1erstellt wurde.

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

Hinweise

Mit dieser Methode können Sie alle Text im Steuerelement auswählen. Sie können diese Methode in Verbindung mit der Methode verwenden, die Text im Steuerelement auswählen muss, um den gesamten Inhalt des Steuerelements zu schneiden und sie in die Cut Zwischenablage einzufügen.

Gilt für