CitectVBA supports the use of file scope
Option
statements which determine
the default behaviour of some CitectVBA functions. For instance,
the Option Explicit
statement causes
the CitectVBA compiler to produce compile errors whenever it
encounters the use of previously undeclared variables. The
Option Compare
statement sets the
default comparison method for string comparisons. The Option Base
statement sets the default base
number for CitectVBA variable arrays to either zero or one.
You must declare all option
statements in CitectVBA at the beginning
of your CitectVBA code files.
See Also