CimClassActionList (object)

Contains the properties of a CimClassActionList Object.
Description: CimClassActionList is an enumeration of CimAction objects. The CimClassActionList is returned from the CimClassInstance.Actions property. Existing actions can be retrieved and modified and new actions can be added to the CimClassActionList object.

Examples

Dim class As CimClassInstance
[...]
Set actionList = class.Actions
Set newPointAction = actionList.Add("POINT_ACTION")
newPointAction.Type = cimSetPoint
newPointAction.PointID = "{$OBJECT.VIRTUAL_POINT"}
newPointAction.PointValue = "4325"
Properties: Count , Item
Methods: Add , Delete