RichEditDocumentExportOptions.PlainText Property
In This Article
Obtains options specific for export to plain text format.
Namespace: DevExpress.XtraRichEdit.Export
Assembly: DevExpress.RichEdit.v24.2.Core.dll
NuGet Package: DevExpress.RichEdit.Core
#Declaration
public PlainTextDocumentExporterOptions PlainText { get; }
#Property Value
Type | Description |
---|---|
Plain |
An object that contains export settings. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Plain |
---|---|
Rich |
|
#Example
The following code snippet illustrates how to use the PlainTextDocumentExporterOptions object properties to achieve the following:
- Include document fields in the exported text
- Enclose fields and their results in the specified symbols
- Set character encoding
richEditControl1.Options.Export.PlainText.ExportHiddenText = true;
richEditControl1.Options.Export.PlainText.FieldCodeStartMarker = "[<";
richEditControl1.Options.Export.PlainText.FieldCodeEndMarker = ">";
richEditControl1.Options.Export.PlainText.FieldResultEndMarker = "]";
richEditControl1.Options.Export.PlainText.Encoding = Encoding.GetEncoding("Windows-1252");
See Also