RichTextBox.Selection Özellik

Tanım

içinde TextSelectiongeçerli seçimi içeren bir RichTextBox nesne alır.

public:
 property System::Windows::Documents::TextSelection ^ Selection { System::Windows::Documents::TextSelection ^ get(); };
public System.Windows.Documents.TextSelection Selection { get; }
member this.Selection : System.Windows.Documents.TextSelection
Public ReadOnly Property Selection As TextSelection

Özellik Değeri

TextSelection içinde RichTextBoxgeçerli seçimi içeren bir nesne.

Döndürülen TextSelection varsayılan değer özelliği değerine IsEmptysahiptirtrue. Boş TextSelection bir seçim olmadan metin alanında bir şapka işareti olarak işlenir.

Örnekler

Aşağıdaki örnekte bu özelliğin kullanımı gösterilmektedir.

// Create a simple FlowDocument to serve as the content input for the construtor.
FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("Simple FlowDocument")));
// After this constructor is called, the new RichTextBox rtb will contain flowDoc.
RichTextBox rtb = new RichTextBox(flowDoc);
// This call will select the entire contents of the RichTextBox.
rtb.SelectAll();
// This call returns the current selection (which happens to be the entire contents
// of the RichTextBox) as a TextSelection object.
TextSelection currentSelection = rtb.Selection;
' Create a simple FlowDocument to serve as the content input for the construtor.
Dim flowDoc As New FlowDocument(New Paragraph(New Run("Simple FlowDocument")))
' After this constructor is called, the new RichTextBox rtb will contain flowDoc.
Dim rtb As New RichTextBox(flowDoc)
' This call will select the entire contents of the RichTextBox.
rtb.SelectAll()
' This call returns the current selection (which happens to be the entire contents
' of the RichTextBox) as a TextSelection object.
Dim currentSelection As TextSelection = rtb.Selection

Açıklamalar

Select Program aracılığıyla içerik seçmek için yöntemini kullanın.

Şunlara uygulanır