Viscom Software Screen2Video 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:   

Screen2Video1.GetAudioInputPinCount
 

Parameter:

No Parameter
 

Return Value:

Return the count for Audio Input Pin.

Example:   

The Visual Basic.Net example 

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