RichTextBox.SelectionLength 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 o número de caracteres selecionados no controle.
public:
virtual property int SelectionLength { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public override int SelectionLength { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.SelectionLength : int with get, set
Public Overrides Property SelectionLength As Integer
Valor da propriedade
O número de caracteres selecionados na caixa de texto.
- Atributos
Exemplos
O exemplo de código a seguir demonstra como usar a SelectionLength propriedade para determinar se o texto está selecionado dentro do RichTextBox. Este exemplo exige que um RichTextBox controle, nomeado richTextBox1
, tenha sido adicionado ao formulário. O exemplo também requer que richTextBox1
contenha texto selecionado no controle.
private:
void ModifySelectedText()
{
// Determine if text is selected in the control.
if ( richTextBox1->SelectionLength > 0 )
{
// Set the color of the selected text in the control.
richTextBox1->SelectionColor = Color::Red;
// Set the font of the selected text to bold and underlined.
richTextBox1->SelectionFont = gcnew System::Drawing::Font( "Arial",10,static_cast<FontStyle>(FontStyle::Bold | FontStyle::Underline) );
// Protect the selected text from modification.
richTextBox1->SelectionProtected = true;
}
}
private void ModifySelectedText()
{
// Determine if text is selected in the control.
if (richTextBox1.SelectionLength > 0)
{
// Set the color of the selected text in the control.
richTextBox1.SelectionColor = Color.Red;
// Set the font of the selected text to bold and underlined.
richTextBox1.SelectionFont = new Font("Arial",10,FontStyle.Bold | FontStyle.Underline);
// Protect the selected text from modification.
richTextBox1.SelectionProtected = true;
}
}
Private Sub ModifySelectedText()
' Determine if text is selected in the control.
If (richTextBox1.SelectionLength > 0) Then
' Set the color of the selected text in the control.
richTextBox1.SelectionColor = Color.Red
' Set the font of the selected text to bold and underlined.
richTextBox1.SelectionFont = New Font("Arial", 10, FontStyle.Bold Or FontStyle.Underline)
' Protect the selected text from modification.
richTextBox1.SelectionProtected = True
End If
End Sub
Comentários
Você pode usar essa propriedade para determinar se algum caractere está selecionado no controle de caixa de texto no momento antes de executar operações no texto selecionado. Você também pode usar essa propriedade para determinar o número total de caracteres (incluindo espaços) selecionados ao executar tarefas de caractere único em um for
loop.