TextRange.Text Propriété

Définition

Obtient ou définit le contenu en texte brut de la sélection actuelle.

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

Valeur de propriété

Chaîne contenant le contenu en texte brut de la sélection actuelle.

Exceptions

Levée lorsqu'une tentative d'affectation de la valeur null à cette propriété est effectuée.

Exemples

L’exemple suivant illustre l’utilisation de la Text propriété .

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

Remarques

Utilisez cette propriété pour extraire le contenu de texte brut dans la sélection actuelle, quelle que soit la mise en forme qui peut être présente.

Les nouveaux caractères de ligne et les sauts de paragraphe sont traités comme équivalents en ce qui concerne cette propriété. Tous les types de sauts de contenu présents dans la sélection actuelle sont convertis en nouvelles lignes lorsque cette propriété est lue.

S’applique à