Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Creates and returns a [MergeField|MergeField] at the end of this Element. This merge field will have the specified name and contents.{excerpt}
{signature:C#}
 public virtual MergeField InsertMergeFieldAfter(System.String fieldName, System.String display)
{signature}{signature:vb.net}
Public Overridable Function InsertMergeFieldAfter(ByVal fieldName As String, ByVal display As String) As MergeField
{signature}
{parameters}
{param:fieldName}A {{String}} representing the name of this merge field.{param}
{param:display}A {{String}} representing the text that will be displayed for this merge field in the document.{param}
{returns}A {{MergeField}} object representing the newly created merge field.{returns}
{exceptions}
{exception:System.Exception}{exception}
{example}{code:csharp|title=C#}
MergeField mfield = e.InsertMergeFieldAfter("MyField", "ThisNameIsDisplayed");{code}
{code:vb.net|title=vb.net}
Dim mfield As MergeField = e.InsertMergeFieldAfter("MyField", "ThisNameIsDisplayed"){code}

{example}