MailMergeAndDownloadCommand.execute(fileExtension) Method
Executes the MailMergeAndDownloadCommand command with the specified parameters.
Declaration
execute(
fileExtension: string | DocumentFormat,
settings?: MailMergeSettings
): boolean
Parameters
Name | Type | Description |
---|---|---|
fileExtension | string | DocumentFormat | A string value specifying the file extension of the resulting document. |
settings | MailMergeSettings | A MailMergeSettings object containing settings to set up mail merge operations. |
Returns
Type | Description |
---|---|
boolean |
|
Remarks
Usage example:
var mergeSettings = {
range: ASPx.MailMergeExportRange.Range,
exportFrom: 2,
exportRecordsCount: 5,
mergeMode: ASPx.MergeMode.NewSection
};
richEdit.commands.mailMergeAndDownload.execute('.docx', mergeSettings);
See Also