TextRange.Text Свойство

Определение

Получает или задает текстовое содержимое текущего выделения.

public:
 property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
public string Text { get; set; }
member this.Text : string with get, set
Public Property Text As String

Значение свойства

String

Строка, содержащая текстовое содержимое текущего выделения.

Исключения

Происходит, когда предпринимается попытка установки для данного свойства значения null.

Примеры

В следующем примере показано использование Text свойства.

// This method returns a plain text representation of a specified FlowDocument.
string GetTextFromFlowDocument(FlowDocument flowDoc)
{
     // Create a new TextRanage that takes the entire FlowDocument as the current selection.
     TextRange flowDocSelection = new TextRange(flowDoc.ContentStart, flowDoc.ContentEnd);
      
     // Use the Text property to extract a string that contains the unformatted text contents 
     // of the FlowDocument.
     return flowDocSelection.Text;
}
' This method returns a plain text representation of a specified FlowDocument.
Private Function GetTextFromFlowDocument(ByVal flowDoc As FlowDocument) As String
    ' Create a new TextRanage that takes the entire FlowDocument as the current selection.
    Dim flowDocSelection As New TextRange(flowDoc.ContentStart, flowDoc.ContentEnd)

    ' Use the Text property to extract a string that contains the unformatted text contents 
    ' of the FlowDocument.
    Return flowDocSelection.Text
End Function

Комментарии

Это свойство используется для извлечения содержимого обычного текста в текущем выделенном фрагменте независимо от форматирования, которое может присутствовать.

Новые символы строки и разрывы абзаца обрабатываются как эквивалентные этому свойству. Все типы разрывов содержимого, присутствующих в текущем выделенном фрагменте, преобразуются в новые строки при чтении этого свойства.

Применяется к