officefileapi-devexpress-dot-xtrarichedit-dot-richeditdocumentserver-b2e1ce31.md
Gets or sets the formatted text content of the document.
Namespace : DevExpress.XtraRichEdit
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
public string RtfText { get; set; }
Public Property RtfText As String
| Type | Description |
|---|---|
| String |
A string, containing the document’s content in rich text format.
|
Use the following methods to save the document in RTF format:
The SubDocument.GetRtfText method allows you to retrieve the specified range in the RTF format. Use the Document.HtmlText property to retrieve the document content in the HTML format.
The following code snippets (auto-collected from DevExpress Examples) contain references to the RtfText property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-grid-richedit-highlight-search-results/CS/E4422/Form1.cs#L20
if (e.Column == colDescription && !string.IsNullOrEmpty(gridView1.FindFilterText)) {
server.RtfText = e.DisplayText;
Document document = server.Document;
reporting-winforms-change-formatting-xrrichtext-rtf-content/CS/XtraReport1.cs#L35
richEditDocumentServer.RtfText = GetCurrentColumnValue("RtfContent").ToString();
ApplyRTFModification(richEditDocumentServer);
winforms-grid-richedit-highlight-search-results/VB/E4422/Form1.vb#L23
If e.Column Is colDescription AndAlso Not String.IsNullOrEmpty(gridView1.FindFilterText) Then
server.RtfText = e.DisplayText
Dim document As Document = server.Document
reporting-winforms-change-formatting-xrrichtext-rtf-content/VB/XtraReport1.vb#L39
richEditDocumentServer.RtfText = GetCurrentColumnValue("RtfContent").ToString()
ApplyRTFModification(richEditDocumentServer)
See Also