Viscomsoft .Net Video Capture SDK

VideoDevice.Name Property

 

Returns the name of Video Device.

VideoCapture.VideoDevice.Name[=string]

Parameter
the name of video device.

Namespace: Viscomsoft.VideoCapture

Remark
This property is Read/Write.

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);