Guide pratique pour extraire le contenu du texte d’un RichTextBox
Cet exemple montre comment extraire le contenu d’un RichTextBox sous forme de texte brut.
Décrire un contrôle RichTextBox
Le code XAML (Extensible Application Markup Language) suivant décrit un contrôle RichTextBox nommé avec du contenu simple.
<RichTextBox Name="richTB">
<FlowDocument>
<Paragraph>
<Run>Paragraph 1</Run>
</Paragraph>
<Paragraph>
<Run>Paragraph 2</Run>
</Paragraph>
<Paragraph>
<Run>Paragraph 3</Run>
</Paragraph>
</FlowDocument>
</RichTextBox>
Exemple de code avec RichTextBox en tant qu’argument
Le code suivant implémente une méthode qui prend un RichTextBox en tant qu’argument et retourne une chaîne représentant le contenu du texte brut du RichTextBox.
La méthode crée une TextRange à partir du contenu de l'RichTextBox, en utilisant le ContentStart et ContentEnd pour indiquer la plage du contenu à extraire. Les propriétés ContentStart et ContentEnd retournent chacune un TextPointeret sont accessibles sur le FlowDocument sous-jacent qui représente le contenu du RichTextBox. TextRange fournit une propriété Text, qui retourne les parties de texte brut du TextRange sous forme de chaîne.
string StringFromRichTextBox(RichTextBox rtb)
{
TextRange textRange = new TextRange(
// TextPointer to the start of content in the RichTextBox.
rtb.Document.ContentStart,
// TextPointer to the end of content in the RichTextBox.
rtb.Document.ContentEnd
);
// The Text property on a TextRange object returns a string
// representing the plain text content of the TextRange.
return textRange.Text;
}
Private Function StringFromRichTextBox(ByVal rtb As RichTextBox) As String
' TextPointer to the start of content in the RichTextBox.
' TextPointer to the end of content in the RichTextBox.
Dim textRange As New TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd)
' The Text property on a TextRange object returns a string
' representing the plain text content of the TextRange.
Return textRange.Text
End Function
Voir aussi
- Vue d’ensemble de RichTextBox
- Vue d’ensemble de TextBox
.NET Desktop feedback