Get/Set the name of the merge field defintion. This must begin and end with curly braces e.g. '{FirstName}'


Namespace: Dynmark.Services.API
Assembly: Dynmark.Services.API (in Dynmark.Services.API.dll)

Syntax

Visual Basic (Declaration)
Public Property Name As String
C#
public string Name { get; set; }
C++
public property string Name sealed  {
    String get();
    void set(String value);
}
J#
/** property */
public string get_Name();

/** property */
public void set_Name(string value);
JScript
public function get Name() : String

public function set Name(value : String);

Exceptions

Exception TypeCondition
ApiArgumentExceptionThrown if value does not begin and end with curly braces

See Also