Represents the procedures of the object. | |
Syntax: | Set GefProcedures = object.Procedures |
Description: | The Procedures property returns the
GefProcedures object. Example: Sub GefObject_Procedures() Dim oCimObj As GefObject Dim oCimProceds As
GefProcedures Set oCimObj = CimGetObject Set oCimProceds =
oCimObj.Procedures MsgBox "The are currently " &
oCimProceds.Count & _ " procedures
on this object" End Sub |