The following language features may be confusing for some users.
A backslash in literal text must be represented as a double backslash, '\\'. For example:
Application.FileExists("c:\\data\\food.xml");
Selection.DeleteRow();
Selection.TypeText "Hello" Selection.TypeText("Hello")
MoveToElement([strElementName], [boolForward=true])
If the return value is not used, both of these calls are correct:
Selection.MoveToElement("Para") Selection.MoveToElement "Para"
The following call is incorrect, because the return value is used in an assignment:
ans = Selection.MoveToElement "Para"
The correct form is:
ans = Selection.MoveToElement("Para")
Copyright © SoftQuad Software Inc. 1999