User Guide
ActiveDocument Object 237
GotoNextEndTag
Syntax GotoNextEndTag(wbSelect: WordBool): WordBool;
Description Boolean. Moves the next end tag, and selects it if wbSelect is True. Returns False if
no tag found.
GotoNextStartTag
Syntax GotoNextStartTag(wbSelect: WordBool): WordBool;
Description Boolean. Moves the next starting tag and selects it if wbSelect is True. Returns False
if no tag is found.
GotoPreviousEndTag
Syntax GotoPreviousEndTag(wbSelect: WordBool): WordBool;
Description Boolean. Moves the previous end tag and selects it if wbSelect is True. Returns False
if no tag is found.
Example
function Main(){
with (Application){
ActiveDocument.GotoPreviousEndTag(false);
}
}
GotoPreviousStartTag
Syntax GotoPreviousStartTag(wbSelect: WordBool): WordBool;
Description Boolean. Moves the previous starting tag and selects it if wbSelect is True. Returns
False if no tag is found.
Example
function Main(){
with (Application){
ActiveDocument.GotoPreviousStartTag(true);
}
}
Indent
Syntax Indent();
Description Indents the current selection.