Sdílet prostřednictvím


TextRange.Text Vlastnost

Definice

Získá nebo nastaví obsah prostého textu aktuálního výběru.

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

Hodnota vlastnosti

Řetězec obsahující obsah ve formátu prostého textu aktuálního výběru.

Výjimky

Vyvolá se při pokusu o nastavení této vlastnosti na null.

Příklady

Následující příklad ukazuje použití Text vlastnosti .

// 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

Poznámky

Tato vlastnost slouží k extrahování obsahu prostého textu v aktuálním výběru bez ohledu na formátování, které může být k dispozici.

Nové znaky řádků a konce odstavců jsou považovány za ekvivalentní s ohledem na tuto vlastnost. Všechny typy konců obsahu v aktuálním výběru jsou při čtení této vlastnosti převedeny na nové řádky.

Platí pro