Devices is a collection of Device objects. The Devices collection contains all currently available devices. The ICImagingControl.Devices property returns a Devices collection.
This example shows how to fill a combo box with the available devices :
Dim DevCol As Devices Dim Dev As Device Set DevCol = ICImagingControl1.Devices For Each Dev In DevCol cboDeviceComboBox.AddItem Dev.Name Next
Property | Description | ||
Count | Returns the count of Device objects in the collection. |
||
Item | Returns the Device at the specified position. |
||
Method | Description | ||
FindIndex | Searches the collection for a given string. The string contains the name of a device. |
||