MailMergeRegionInfo

MailMergeRegionInfo class

Contains information about a mail merge region.

To learn more, visit the Mail Merge and Reporting documentation article.

public class MailMergeRegionInfo

Properties

NameDescription
EndField { get; }Returns an end field for the region.
EndMustacheTag { get; }Returns an end “mustache” tag for the region.
Fields { get; }Returns a list of child fields.
Level { get; }Returns the nesting level for the region.
MustacheTags { get; }Returns a list of child “mustache” tags.
Name { get; }Returns the name of region.
ParentRegion { get; }Returns parent region info (null for top-level region).
Regions { get; }Returns a list of child regions.
StartField { get; }Returns a start field for the region.
StartMustacheTag { get; }Returns a start “mustache” tag for the region.

Examples

Shows how to verify mail merge regions.

Document doc = new Document(MyDir + "Mail merge regions.docx");

// Returns a full hierarchy of merge regions that contain MERGEFIELDs available in the document.
MailMergeRegionInfo regionInfo = doc.MailMerge.GetRegionsHierarchy();

// Get top regions in the document.
IList<MailMergeRegionInfo> topRegions = regionInfo.Regions;

Assert.AreEqual(2, topRegions.Count);
Assert.AreEqual("Region1", topRegions[0].Name);
Assert.AreEqual("Region2", topRegions[1].Name);
Assert.AreEqual(1, topRegions[0].Level);
Assert.AreEqual(1, topRegions[1].Level);

// Get nested region in first top region.
IList<MailMergeRegionInfo> nestedRegions = topRegions[0].Regions;

Assert.AreEqual(2, nestedRegions.Count);
Assert.AreEqual("NestedRegion1", nestedRegions[0].Name);
Assert.AreEqual("NestedRegion2", nestedRegions[1].Name);
Assert.AreEqual(2, nestedRegions[0].Level);
Assert.AreEqual(2, nestedRegions[1].Level);

// Get list of fields inside the first top region.
IList<Field> fieldList = topRegions[0].Fields;

Assert.AreEqual(4, fieldList.Count);

FieldMergeField startFieldMergeField = nestedRegions[0].StartField;

Assert.AreEqual("TableStart:NestedRegion1", startFieldMergeField.FieldName);

FieldMergeField endFieldMergeField = nestedRegions[0].EndField;

Assert.AreEqual("TableEnd:NestedRegion1", endFieldMergeField.FieldName);

See Also