Viscom Software VideoCap ActiveX Control

GetVideoInputCount Method

Description:   

Return the count of Video Input. In some development tools, you cannot use VideoInput Object, for this case, this method is useful.

Usage:   

VideoCap1.GetVideoInputCount
 

Parameter:

No Parameter
 

Return Value:

Return the count for Video Input

Example:   

The Visual Basic.Net example 

For i = 0 To AxVideoCap1.GetVideoInputCount - 1
strVideoInputName = AxVideoCap1.GetVideoInputName(i)
cbovideoinput.Items.Add(strVideoInputName)
Next