Creating a Strongly Typed Variable
This topic describes how to create a strongly typed variable.
To create a strongly typed variable
When you declare the variable, make sure you add a colon (:) at the end of the variable name.
For example:
var VariableA:Date = new Date ();
var VariableB:BusObject;
var VariableC:BusComp;