TatScript.DefInstances Property
Holds the list of default objects whose methods and properties are directly accessible from this script.
Remarks
DefInstances holds a list of objects which are treated by script as default objects. A default object is an object which methods and properties are directly accessible from the script without the need to prepend the method name with the object name. For example, if an object MyObject has the method MyMethod, and it is added as a default instance in DefaultInstances property, you can access the method directly the following way.
MyMethod;
You will rarely add objects directly to DefInstances, you should use TatScript.UsesObject method instead.
Syntax
Unit: atScript
property TatScript.DefInstances: TatObjects