Devices

Devices is a collection of Device objects. The Devices collection contains all currently available devices. The ICImagingControl.Devices property returns a Devices collection.

Example

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

Properties

Property Description
Count

Returns the count of Device objects in the collection.

Item

Returns the Device at the specified position.

Methods

Method Description
FindIndex

Searches the collection for a given string. The string contains the name of a device.

<< Classes