Installation manual
DEVICE COLLECTION OBJECT
53
5
5 DEVICE COLLECTION OBJECT
5.1 PROPERTIES
PROPERTY COUNT
PURPOSE
Gets the total number of devices.
DESCRIPTION
This property gets the number of devices stored in the collection.
IDL
[propget, id(3), helpstring("property Count")] HRESULT Count([out, retval] long *pVal);
DATA TYPE
LONG
POSSIBLE VALUES
Read only property
EXAMPLE
...
Dim DevicesObject as Devices
Dim NumDevs as Long
...
Set DevicesObject = RFNCCTL.Devices
NumDevs = DevicesObject.Count
...
NumDevs = RFNCCTL.Devices.Count
...