Public Function GetAudioEffectName( ByVal iIndexAsInteger ) as String
Parameter iIndex The index of audio effect, the first index is 0.
Return Value Return the name ofAudio 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