GefObjectVariables (object)

Contains the variables for a GefObject.
Description: GefObjectVariables is a collection of GefObjectVariable objects.

It contains the variables owned by an object. The collection can be accessed by the Variables property of a GefObject. It does not include variables in any of the parent objects.

Example:

Sub GefObject_Variables()
    
    Dim oCimObj As GefObject
    Dim oCimVars As GefObjectVariables
    
    Set oCimObj = CimGetObject
    Set oCimVars = oCimObj.Variables
    
    MsgBox "There are " & oCimVars.Count & _
        " variable(s) on this object"
    
End Sub
Properties: Application , Count , Item , Parent
Methods: Add , Remove