TextBoxBase.HideSelection 속성
TextBox 컨트롤이 포커스를 잃을 때 해당 컨트롤에서 선택한 텍스트가 강조 표시된 상태로 남아 있는지 여부를 나타내는 값을 가져오거나 설정합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Property HideSelection As Boolean
‘사용 방법
Dim instance As TextBoxBase
Dim value As Boolean
value = instance.HideSelection
instance.HideSelection = value
public bool HideSelection { get; set; }
public:
property bool HideSelection {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_HideSelection ()
/** @property */
public void set_HideSelection (boolean value)
public function get HideSelection () : boolean
public function set HideSelection (value : boolean)
속성 값
TextBox 컨트롤이 포커스를 잃을 때 선택한 텍스트가 강조 표시된 상태로 유지되지 않으면 true이고 강조 표시된 상태로 유지되면 false입니다. 기본값은 true입니다.
설명
이 속성을 사용하면 맞춤법 검사기 대화 상자와 같은 폼 또는 대화 상자에 포커스가 있는 경우 TextBox 컨트롤의 텍스트를 강조 표시된 상태로 유지할 수 있습니다.
예제
다음 코드 예제에서는 HideSelection 속성을 사용하는 방법을 보여 줍니다. 이 예제를 실행하려면 폼에 다음 코드를 붙여넣고 폼의 생성자나 Load 메서드에서 InitializeTextBox 메서드를 호출합니다.
'Declare a textbox called TextBox1.
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
'Initialize TextBox1.
Private Sub InitializeTextBox()
Me.TextBox1 = New TextBox
Me.TextBox1.Location = New System.Drawing.Point(32, 24)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(136, 20)
Me.TextBox1.TabIndex = 1
Me.TextBox1.Text = "Type and hit enter here..."
'Keep the selection highlighted, even after textbox loses focus.
TextBox1.HideSelection = False
Me.Controls.Add(TextBox1)
End Sub
//Declare a textbox called TextBox1.
internal System.Windows.Forms.TextBox TextBox1;
//Initialize TextBox1.
private void InitializeTextBox()
{
this.TextBox1 = new TextBox();
this.TextBox1.Location = new System.Drawing.Point(32, 24);
this.TextBox1.Name = "TextBox1";
this.TextBox1.Size = new System.Drawing.Size(136, 20);
this.TextBox1.TabIndex = 1;
this.TextBox1.Text = "Type and hit enter here...";
//Keep the selection highlighted, even after textbox loses focus.
TextBox1.HideSelection = false;
this.Controls.Add(TextBox1);
}
//Declare a textbox called TextBox1.
internal:
System::Windows::Forms::TextBox^ TextBox1;
private:
//Initialize TextBox1.
void InitializeTextBox()
{
this->TextBox1 = gcnew TextBox;
this->TextBox1->Location = System::Drawing::Point( 32, 24 );
this->TextBox1->Name = "TextBox1";
this->TextBox1->Size = System::Drawing::Size( 136, 20 );
this->TextBox1->TabIndex = 1;
this->TextBox1->Text = "Type and hit enter here...";
//Keep the selection highlighted, even after textbox loses focus.
TextBox1->HideSelection = false;
this->Controls->Add( TextBox1 );
}
//Declare a textbox called TextBox1.
System.Windows.Forms.TextBox textBox1;
//Initialize TextBox1.
private void InitializeTextBox()
{
this.textBox1 = new TextBox();
this.textBox1.set_Location(new System.Drawing.Point(32, 24));
this.textBox1.set_Name("TextBox1");
this.textBox1.set_Size(new System.Drawing.Size(136, 20));
this.textBox1.set_TabIndex(1);
this.textBox1.set_Text("Type and hit enter here...");
//Keep the selection highlighted, even after textbox loses focus.
textBox1.set_HideSelection(false);
this.get_Controls().Add(textBox1);
} //InitializeTextBox
플랫폼
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에서 지원