Movie Player ActiveX Control

GetAudioEffectName   

 

Get the name of Audio Effect for specific index.

Public Function GetAudioEffectName(
  ByVal iIndex As Integer
) as String

 

Parameter
iIndex
The index of audio effect, the first index is 0.

Return Value
Return the name of Audio Effect.

Example

   

Visual Basic Syntax
iAudioEffectCount = MoviePlayer1.GetAudioEffectCount
For i = 0 To iAudioEffectCount - 1
   List1.AddItem MoviePlayer1.GetAudioEffectName(i)
Next
If List1.ListCount > 0 Then
  List1.ListIndex = 0
End If