Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Article | Read, Write | Article | Article |
| Category | Read, Write | Category | Category |
| Errors | Read | IList of Error | Errors |
| SortOrder | Read, Write | Nullable of Int32 | Sort Order |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $articleCategory.HasErrors())
JavaScript
var booleanResponse = articleCategory.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $articleCategory.HasWarnings())
JavaScript
var booleanResponse = articleCategory.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $articleCategory.HasWarningsOrErrors())
JavaScript
var booleanResponse = articleCategory.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$articleCategory.ThrowErrors()
JavaScript
articleCategory.ThrowErrors();