Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RtfRunBackColorExportMode Enum

Lists conventions used for exporting the background color to RTF format.

Namespace: DevExpress.XtraRichEdit.Export

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

NuGet Package: DevExpress.RichEdit.Core

#Declaration

[ComVisible(true)]
[Flags]
public enum RtfRunBackColorExportMode

#Members

Name Description
Default

Exports Highlight and Shading characteristics of the background color separately - as the \highlightN the \chcbpatN tag where N is the fill color, specified as an index into the document’s color table.

Chcbpat

Exports the background color as the \chcbpatN tag, where N is the fill color, specified as an index into the document’s color table.

Highlight

Exports the background color as the \highlightN tag where N specifies the color.

Both

Exports background color using both \chcbpat and \highlight tags (both tags will have the same color value).

#Related API Members

The following properties accept/return RtfRunBackColorExportMode values:

Library Related API Members
WPF Controls DXRichEditRtfDocumentExporterCompatibilityOptions.BackColorExportMode
Office File API RtfDocumentExporterCompatibilityOptions.BackColorExportMode

#Remarks

The RtfRunBackColorExportMode is used as the value of the RtfDocumentExporterCompatibilityOptions.BackColorExportMode property.

See Also