Viscom Software Screen2Video ActiveX Control

GetAudioCompressorName Method

Description:   

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

Usage:   

Screen2Video1.GetAudioCompressorName Parameter1
 

Parameter:

Parameter1 - the index of Audio Compressor
 

Return Value:

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

Example:   

This Visual Basic.Net example 

For i = 0 To AxScreen2Video1.GetAudioCompressorCount - 1
strAudioCompName = AxScreen2Video1.GetAudioCompressorName(i)
cboaudiocomp.Items.Add(strAudioCompName)
Next