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

MailMergeSettingsBuilder.DataSource(IDictionary) Method

Sets a data source for Rich Text Editor’s mail merge functionality.

Namespace: DevExpress.AspNetCore.RichEdit

Assembly: DevExpress.AspNetCore.RichEdit.v21.1.dll

NuGet Package: DevExpress.AspNetCore.RichEdit

Declaration

public MailMergeSettingsBuilder DataSource(
    IDictionary data
)

Parameters

Name Type Description
data IDictionary

The MailMerge data source.

Returns

Type Description
MailMergeSettingsBuilder

An object that can be used to further configure the MailMerge settings.

Remarks

@(Html.DevExpress().RichEdit("richEdit")
    .Open("Documents/MailMergeTemplate.docx")
    .MailMerge(m => m
        .DataSource(new Dictionary<string, string>() { { "CompanyName", "Super Mart of the West" }, { "Address", "702 SW 8th Street" }})
        .ViewMergedData(true)
    )
)
See Also