GefProcedures.Count (read-only property)

Gets the number of objects in the collection.
Syntax: long = object.Count
Description: The Count property gets the number of procedures on the desired object.

Example:

Sub GefProcedures_Count()
    
    Dim oCimObj As GefObject
    Dim oCimProcedures As GefProcedures
    
    Set oCimObj = CimGetObject
    Set oCimProcedures = oCimObj.Procedures
    
    MsgBox "The number of procedures on the selected " & _
        "object is " & oCimProcedures.Count
    
End Sub