Skip to main content
All docs
V26.1
  • 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.v26.1.dll

    NuGet Package: DevExpress.Wpf.RichEdit

    Declaration

    public bool ExportListLevelSeparator { get; set; }

    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
    .PlainTextOptions .ExportListLevelSeparator

    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