Back to Devexpress

IMailMergeSettings Interface

aspnetcore-js-devexpress-dot-richedit-7e940109.md

latest1.3 KB
Original Source

IMailMergeSettings Interface

Declares properties related to the mail merge functionality.

Declaration

ts
export interface IMailMergeSettings

Properties

activeRecord Property

Specifies the active record index.

Declaration

ts
activeRecord?: number

Property Value

TypeDescription
number

The active record index.

|

Remarks

Use the activeRecordIndex method to navigate through records when the viewMergedData property is set to true.

dataSource Property

Specifies the data source for the mail merge.

Declaration

ts
dataSource?: any[] | string | CustomStoreOptions | DataSourceOptions | DevExpress.data.Store | DevExpress.data.DataSource

Property Value

TypeDescription
any

The mail merge data source.

|

viewMergedData Property

Specifies whether the merged data is displayed in the Rich Text Editor.

Declaration

ts
viewMergedData?: boolean

Property Value

TypeDescription
boolean

true to display the merged data; false to hide the merged data.

|