Removes the specified item from the collection. | |
Syntax: | object.Remove IndexOrName |
Parameters: |
Optional IndexOrName As VARIANT -
|
Description: | The Index argument can range from 0 to
Count-1. The GefProcedures collection support access by index number or name. Example: Sub GefProcedures_Remove() Dim oCimObj As GefObject Dim oCimProcedures As
GefProcedures Set oCimObj = CimGetObject Set oCimProcedures =
oCimObj.Procedures oCimProcedures.Remove 0 End Sub |