Properties
Name | Access | Type | Description |
---|---|---|---|
Children | Read, Write | IList of BasicWikiPage | Children |
Errors | Read | IList of Error | Errors |
HasVisibleChildren | Read, Write | Boolean | Has Visible Children |
HiddenInTableOfContents | Read, Write | Boolean | Hidden In Table Of Contents |
Id | Read, Write | Nullable of Int32 | Id |
IsDefaultPage | Read, Write | Boolean | Is Default Page |
PageKey | Read, Write | String | Page Key |
Position | Read, Write | Nullable of Int32 | Position |
Title | Read, Write | String | Title |
Url | Read, Write | String | Url |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $basicWikiPage.HasErrors())
JavaScript
var booleanResponse = basicWikiPage.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $basicWikiPage.HasWarnings())
JavaScript
var booleanResponse = basicWikiPage.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $basicWikiPage.HasWarningsOrErrors())
JavaScript
var booleanResponse = basicWikiPage.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$basicWikiPage.ThrowErrors()
JavaScript
basicWikiPage.ThrowErrors();