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
BooleanHasWarnings
Velocity
#set($booleanResponse = $customPage.HasWarnings())
JavaScript
var booleanResponse = customPage.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $customPage.HasWarningsOrErrors())
JavaScript
var booleanResponse = customPage.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$customPage.ThrowErrors()
JavaScript
customPage.ThrowErrors();
 
				