Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

RtfDocumentExporterOptions.ListExportFormat Property

Gets or sets the way the lists are represented in the exported RTF document.

Namespace: DevExpress.XtraRichEdit.Export

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

public RtfNumberingListExportFormat ListExportFormat { get; set; }

Property Value

Type Description
RtfNumberingListExportFormat

A RtfNumberingListExportFormat enumeration member specifying how the lists are exported.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ListExportFormat
WinForms Controls RichTextEditDocumentExportOptions
.Rtf.ListExportFormat
Office File API RichEditDocumentExportOptions
.Rtf.ListExportFormat

Remarks

Number format data can be stored individually for each paragraph, or in a style sheet within the document. In the latter case, each paragraph contains a link to the entry in the list numbering definition table.

The ListExportFormat property allows you to choose how the list numbering information is saved - the RtfNumberingListExportFormat.PlainTextFormat option stores numbering information for each paragraph (so the formatting is applied to the paragraph itself, and there are no list styles), while the RtfNumberingListExportFormat.RtfFormat indicates the use of a list style table.

See Also