Properties
Name | Access | Type | Description |
---|---|---|---|
Content | Read | Content | Content |
Errors | Read | IList of Error | Errors |
IsRecommended | Read | Boolean | Is Recommended |
PreviewHtml | Read | String | Preview Html |
SupportsLabelHtml | Read | Boolean | Supports Label Html |
Token | Read | String | Token |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $mentionable.HasErrors())
JavaScript
var booleanResponse = mentionable.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $mentionable.HasWarnings())
JavaScript
var booleanResponse = mentionable.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $mentionable.HasWarningsOrErrors())
JavaScript
var booleanResponse = mentionable.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$mentionable.ThrowErrors()
JavaScript
mentionable.ThrowErrors();