Wraps the paragraph content in a mail merge field.
This method doesn't have any parameters.
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oParagraph = oDocument.GetElement(0); oParagraph.AddText("Paragraph wrapped in 'Mail Merge Field'"); oParagraph.WrapInMailMergeField(); builder.SaveFile("docx", "WrapInMailMergeField.docx"); builder.CloseFile();