Returns the VideoDevice at the specified position.
Devices.VideoDevices[Index]
Namespace: Viscomsoft.VideoCapture
Remark Returns the VideoDevice at the specified position.
Example
[c# Syntax] public VideoCapture _capture = new VideoCapture(); public Devices _devices = new Devices(); _capture.Initialize(); _devices.Refresh(); for (int i = 0; i < _devices.VideoDevices.Count; i++) cbovideodevice.Items.Add(_devices.VideoDevices[i].Name);