Back to Devexpress

RichEditDocumentServer.RtfText Property

officefileapi-devexpress-dot-xtrarichedit-dot-richeditdocumentserver-b2e1ce31.md

latest4.0 KB
Original Source

RichEditDocumentServer.RtfText Property

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

Declaration

csharp
public string RtfText { get; set; }
vb
Public Property RtfText As String

Property Value

TypeDescription
String

A string, containing the document’s content in rich text format.

|

Remarks

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

csharp
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

csharp
richEditDocumentServer.RtfText = GetCurrentColumnValue("RtfContent").ToString();
ApplyRTFModification(richEditDocumentServer);

winforms-grid-richedit-highlight-search-results/VB/E4422/Form1.vb#L23

vb
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

vb
richEditDocumentServer.RtfText = GetCurrentColumnValue("RtfContent").ToString()
ApplyRTFModification(richEditDocumentServer)

Implements

RtfText

See Also

RichEditDocumentServer Class

RichEditDocumentServer Members

DevExpress.XtraRichEdit Namespace