Skip to main content
A newer version of this page is available. .

RichEditControl.MailMergeOptions Property

Provides access to the default mail merge options. This is a dependency property.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v18.2.dll

Declaration

public DXRichEditMailMergeOptions MailMergeOptions { get; set; }

Property Value

Type Description
DXRichEditMailMergeOptions

A DXRichEditMailMergeOptions object which holds the default mail merge options.

Remarks

The settings provided by the MailMergeOptions property are used by the RichEditControl.MailMerge method, unless specified explicitly in the options parameter.

To perform a specific mail merge with options different from ones specified using the MailMergeOptions property, create a new MailMergeOptions instance using the RichEditControl.CreateMailMergeOptions method, specify its property values as required, and call the RichEditControl.MailMerge method overload with options.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MailMergeOptions property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also