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
Description

Excerpt

Creates and returns a MergeField at the beginning of this Element. This merge field will have the specified name and contents.

Signature
C#
C#
 public virtual MergeField InsertMergeFieldBefore(System.String fieldName, System.String display)
Signature
vb.net
vb.net
Public Overridable Function InsertMergeFieldBefore(ByVal fieldName As String, ByVal display As String) As MergeField
Parameters
Param
fieldName
fieldName

A String representing the name of this merge field.

Param
display
display

A String representing the text that will displayed for this merge field in the document.

Returns

A MergeField object representing the newly created merge field.

Exceptions
Exception
System.Exception
System.Exception

Example
Code Block
csharp
csharp
titleC#
MergeField mfield = e.InsertMergeFieldBefore("MyField", "ThisNameIsDisplayed");
Code Block
vb.net
vb.net
titlevb.net
Dim mfield As MergeField = e.InsertMergeFieldBefore("MyField", "ThisNameIsDisplayed")