Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Errors | Read | IList of Error | Errors |
| Label | Read, Write | String | Label |
| Value | Read, Write | String | Value |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $profileFieldTypeChoice.HasErrors())
JavaScript
var booleanResponse = profileFieldTypeChoice.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $profileFieldTypeChoice.HasWarnings())
JavaScript
var booleanResponse = profileFieldTypeChoice.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $profileFieldTypeChoice.HasWarningsOrErrors())
JavaScript
var booleanResponse = profileFieldTypeChoice.HasWarningsOrErrors();
Returns
BooleanIsUniqueId
Velocity
#set($booleanResponse = $profileFieldTypeChoice.IsUniqueId($index))
JavaScript
var booleanResponse = profileFieldTypeChoice.IsUniqueId(index);
Parameters
| Name | Type | Description | Required | Default | Options |
|---|---|---|---|---|---|
| index | String | Index | Required |
Returns
BooleanThrowErrors
Velocity
$profileFieldTypeChoice.ThrowErrors()
JavaScript
profileFieldTypeChoice.ThrowErrors();