Viscom Software VideoCap ActiveX Control

VideoInput.Name Property

Description:   

Return the name of the VideoInput.

Usage:   

VideoInput.Name

Data Type:   

String

Usage:   

VideoInput.Name

Limitations:   

Read Only

Example:   

This Visual Basic example load all video input into combo:

Dim myVideoInput as VideoInput

For Each myVideoInput In VideoCap1.VideoInputs
    cboVideoInput.AddItem myVideoInput.Name
Next