Properties
Name | Access | Type | Description |
---|---|---|---|
Errors | Read | IList of Error | Errors |
Id | Read, Write | Nullable of Int32 | Id |
Name | Read, Write | String | Name |
Title | Read, Write | String | Title |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $customPage.HasErrors())
JavaScript
var booleanResponse = customPage.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $customPage.HasWarnings())
JavaScript
var booleanResponse = customPage.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $customPage.HasWarningsOrErrors())
JavaScript
var booleanResponse = customPage.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$customPage.ThrowErrors()
JavaScript
customPage.ThrowErrors();