TextBoxBase.SelectAll 方法

定义

选定文本框中的所有文本。

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

示例

下面的代码示例使用 TextBox派生类来确定控件中是否选择了任何文本。 如果未选择任何文本,则会在将控件的内容复制到 剪贴板 之前对SelectAll方法进行调用。 This example requires that a TextBox has been created named 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

注解

此方法使你可以选择控件中的所有文本。 可以将此方法与需要在控件中选择文本的方法结合使用 Cut ,以剪切控件的全部内容并将其粘贴到 剪贴板

适用于