RichTextBox.SelectionLength Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft die Anzahl der im Steuerelement markierten Zeichen ab oder legt diese fest.
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
Eigenschaftswert
Die Anzahl der markierten Zeichen im Textfeld.
- Attribute
Beispiele
Im folgenden Codebeispiel wird veranschaulicht, wie Mithilfe der SelectionLength Eigenschaft ermittelt wird, ob Text innerhalb des RichTextBoxObjekts ausgewählt ist. In diesem Beispiel ist erforderlich, dass dem Formular ein RichTextBox Steuerelement mit dem Namen richTextBox1
"" hinzugefügt wurde. Das Beispiel erfordert außerdem, dass richTextBox1
Text enthält, der im Steuerelement ausgewählt ist.
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
Hinweise
Sie können diese Eigenschaft verwenden, um zu ermitteln, ob aktuell im Textfeld-Steuerelement Zeichen ausgewählt sind, bevor Sie Vorgänge für den markierten Text ausführen. Sie können diese Eigenschaft auch verwenden, um die Gesamtanzahl von Zeichen (einschließlich Leerzeichen) zu bestimmen, die beim Ausführen einzelner Zeichenaufgaben in einer for
Schleife ausgewählt werden.