Movie Maker Timeline Control

GetAudioEncoder Method

Description

Get the name of avi audio encoder at the specified index.

Syntax

Public Function GetAudioEncoder( _
   ByVal index as integer, _
  ) as string

 

Parameter

index
   the index of avi audio encoder

 

Return Value

    return the string of audio encoder name

 

Example

Visual Basic Syntax
strAudioCompressor = "Empty"
Do While strAudioCompressor <> ""
 strAudioCompressor = TimelineControl1.GetAudioEncoder(iCount)
  If (strAudioCompressor <> "") Then
    cboaviaencoder.AddItem (strAudioCompressor)
   iCount = iCount + 1
 End If
Loop