TextBoxBase.HideSelection Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define um valor que indica se o texto selecionado no controle de caixa de texto permanece realçado quando o controle perde o foco.
public:
property bool HideSelection { bool get(); void set(bool value); };
public bool HideSelection { get; set; }
member this.HideSelection : bool with get, set
Public Property HideSelection As Boolean
Valor da propriedade
true
se o texto selecionado não aparecer realçado quando o controle de caixa de texto perde o foco. false
se o texto selecionado permanecer realçado quando o controle de caixa de texto perde o foco. O padrão é true
.
Exemplos
O exemplo de código a seguir demonstra como usar a HideSelection propriedade. Para executar o exemplo, cole o código a seguir em um formulário. Chame o InitializeTextBox
método no construtor ou Load
método do formulário.
//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.
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.
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
Comentários
Você pode usar essa propriedade para manter o texto realçado em um controle de caixa de texto, enquanto outro formulário ou uma caixa de diálogo tem foco, como uma caixa de diálogo do verificador ortográfico.