Click or drag to resize

IMcObjectsGlobalTools Property

The McOMGlobal class

Namespace:  MediaCy.IQL.ObjectManager
Assembly:  MediaCy.IQL.ObjectManager (in MediaCy.IQL.ObjectManager.dll) Version: 10.0.6912.0
Syntax
VB
ReadOnly Property GlobalTools As McOMGlobal
	Get

Property Value

Type: McOMGlobal
Remarks
The McGlobalTools class exposes a large number of useful methods. From VB a pre-defined global instance of this class is always available, but from C/C++ you would need to create your own. This property does that job for you.
Examples
VB
'In VB, you don't need to specify the object
Debug.Print GlobalTools.McToText( Array(1,2,3)).Value 'McToText is exposed by McOMGlobal
'Below is the above using the GlobalTools Property
Debug.Print Engine.McObjects.GlobalTools.McToText( Array(1,2,3))
See Also