MailMergeDataView Property

Applies To

View object.

Description

True if mail merge data is displayed instead of mail merge fields in the specified window. Read/write Boolean.

Note If the specified window isn't a main document, an error occurs.

See Also

ShowFieldCodes property, ViewMailMergeFieldCodes property.

Example

If the active document includes at least one mail merge field, this example displays mail merge data from the first record in the attached data source.

If ActiveDocument.MailMerge.Fields.Count >= 1 Then
    ActiveDocument.MailMerge.DataSource.ActiveRecord = 1
    ActiveWindow.View.ShowFieldCodes = False
    ActiveWindow.View.MailMergeDataView = True
End If
This example toggles between viewing mail merge fields and viewing the resulting data.

With ActiveWindow.View
    .ShowFieldCodes = False
    .MailMergeDataView = Not .MailMergeDataView
End With