Viscom Software VideoCap ActiveX Control

GetAudioInputPinCount Method

Description:   

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

Usage:   

VideoCap1.GetAudioInputPinCount
 

Parameter:

No Parameter
 

Return Value:

Return the count for Audio Input Pin.

Example:   

The Visual Basic.Net example 

For i = 0 To AxVideoCap1.GetAudioInputPinCount - 1
strAudioInputPinName = AxVideoCap1.GetAudioInputPinName(i)
cboaudioinputpin.Items.Add(strAudioInputPinName)
Next