Purpose
Accesses the list of reserved names used by the FCAS language.
Syntax
ReservedWord (Integer)
ReservedWords
ReservedWordType (Integer)
Example
Dim i as Integer
Dim sf as ServerFile
Dim Path as String
For i = 0 to ReservedWords - 1
Path = "Admin Help|Customization Tools|FCAS|Language Reference|"
If ReservedWordType(i)<>"" Then Path = Path & ReservedWordType(i) & "."
Path = Path & ReservedWord(i)
If (NOT sf.Exists(path)) Then
Debug Path
End If
Next i
|