Skip to main content

Document.Text Property

Gets or sets the document’s text (plain text).

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v23.2.Core.dll

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

Declaration

string Text { get; set; }

Property Value

Type Description
String

A string value that specifies the text of the document.

Remarks

The text is displayed using default formatting (or the text formatting specified via the RichEditAppearance.Text property).

Assigning a value to this property results in a new loaded document that is imported from the plain text format. So, all appropriate events are fired in this case. If you want to just clear the text of an existing document, use the SubDocument.Delete method with a SubDocument.Range as a parameter. This technique will not reset document properties. To wipe off the trace of this operation so it can not be undone, use the RichEditControl.ClearUndo method, as follows:

richEdit.Document.Delete(richEdit.Document.Range);
richEdit.ClearUndo();

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Text 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.

See Also