다음을 통해 공유


TextBoxBase.SelectAll 메서드

텍스트 상자의 모든 텍스트를 선택합니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
Public Sub SelectAll
‘사용 방법
Dim instance As TextBoxBase

instance.SelectAll
public void SelectAll ()
public:
void SelectAll ()
public void SelectAll ()
public function SelectAll ()

설명

이 메서드를 사용하면 컨트롤 내에서 모든 텍스트를 선택할 수 있습니다. 컨트롤에서 텍스트를 선택하고, 컨트롤의 전체 내용을 잘라낸 다음 클립보드에 붙여넣어야 하는 Cut 메서드와 함께 이 메서드를 사용할 수 있습니다.

예제

다음 코드 예제에서는 파생 클래스인 TextBox를 사용하여 컨트롤에 선택된 텍스트가 있는지 여부를 확인합니다. 선택된 텍스트가 없는 경우 컨트롤의 내용을 클립보드에 복사하기 전에 SelectAll 메서드를 호출합니다. 이 예제에서는 textBox1이라는 TextBox가 만들어져 있어야 합니다.

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
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 void CopyAllMyText()
{
    // Determine if any text is selected in the TextBox control.
    if (textBox1.get_SelectionLength() == 0) {
        // Select all text in the text box.
        textBox1.SelectAll();
    }
    // Copy the contents of the control to the Clipboard.
    textBox1.Copy();
} //CopyAllMyText

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

TextBoxBase 클래스
TextBoxBase 멤버
System.Windows.Forms 네임스페이스