DXRichEditPlainTextDocumentExporterOptions.ExportListLevelSeparator Property
Gets or sets whether to export a numbering list level separator (a character that follows the number or bullet symbol). This is a dependency property.
Namespace: DevExpress.Xpf.RichEdit
Assembly: DevExpress.Xpf.RichEdit.v24.1.dll
NuGet Package: DevExpress.Wpf.RichEdit
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, to export the list separator mark; otherwise, false. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to ExportListLevelSeparator |
---|---|
DXRichEditDocumentExportOptions |
|
Remarks
List level separator is a character that follows the number or bullet symbol in the list item (tab character, space or nothing).
The code sample below shows how to export lists and separators:
<dxre:RichEditControl CommandBarStyle="Ribbon" x:Name="richEditControl">
<dxre:RichEditControl.ExportOptions>
<dxre:DXRichEditDocumentExportOptions>
<dxre:DXRichEditDocumentExportOptions.PlainTextOptions>
<dxre:DXRichEditPlainTextDocumentExporterOptions ExportBulletsAndNumbering="True"
ExportListLevelSeparator="True"/>
</dxre:DXRichEditDocumentExportOptions.PlainTextOptions>
</dxre:DXRichEditDocumentExportOptions>
</dxre:RichEditControl.ExportOptions>
</dxre:RichEditControl>
See Also