wpf-devexpress-dot-xpf-dot-richedit-dot-richeditcontrol-dot-mailmerge-x28-devexpress-dot-xtrarichedit-dot-iricheditdocumentserver-x29.md
This method has become obsolete. Use another MailMerge method overload with appropriate parameters instead.
Merges data to the current document and sends the result to the specified RichEditDocumentServer instance.
Namespace : DevExpress.Xpf.RichEdit
Assembly : DevExpress.Xpf.RichEdit.v25.2.dll
NuGet Package : DevExpress.Wpf.RichEdit
[Browsable(false)]
[Obsolete("This method has become obsolete. Use another MailMerge method overload with appropriate parameters instead.")]
public void MailMerge(
IRichEditDocumentServer documentServer
)
<Browsable(False)>
<Obsolete("This method has become obsolete. Use another MailMerge method overload with appropriate parameters instead.")>
Public Sub MailMerge(
documentServer As IRichEditDocumentServer
)
| Name | Type | Description |
|---|---|---|
| documentServer | IRichEditDocumentServer |
An object implementing the IRichEditDocumentServer interface, such as the RichEditDocumentServer or the RichEditControl instance.
|
Use this method to process the resulting document in the RichEditDocumentServer. For example, if merge fields are nested within DOCVARIABLE fields, you can call the FieldCollection.Update method to calculate field content by handling the IRichEditDocumentServer.CalculateDocumentVariable event.
The RichEditControl.CalculateDocumentVariable event is raised for the object with the IRichEditDocumentServer interface, passed as an argument to the MailMerge method.
See Also