Viscom Software Screen2Video ActiveX Control

GetAudioInputPinName Method

Description:   

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

Usage:   

Screen2Video1.GetAudioInputPinName Parameter1
 

Parameter:

Parameter1 - the index of Audio Input Pin
 

Return Value:

Return the name of Audio Input Pin If the index is not found, return empty string.

Example:   

The Visual Basic.Net example 

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