
A Device object contains the information about a video capture device. The Name property of this object is used to set the ICImagingControl.Device property. This sets the current video capture device. A Device can be obtained out of the Devices collection.
The following example shows how to get the first available device object.
[VB.NET]
Dim Dev As Device Dev = IcImagingControl1.Devices(0)
[C#]
Device Dev = ICImagingControl1.Devices[0];
Namespace: TIS.Imaging
Introduced in IC Imaging Control 1.x
| Property | Description | ||
| Name | Returns the name of the Device. |
||
| Method | Description | ||
| GetSerialNumber | Retrieves the serial number of the video capture device. |
||