Movie Maker Timeline Control

GetVideoEncoder Method

Description

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

Syntax

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

 

Parameter

index
   the index of avi video encoder


Return Value

    return the string of video encoder name

 

Example

Visual Basic Syntax
strVideoCompressor = "Empty"
Do While strVideoCompressor <> ""
 strVideoCompressor = TimelineControl1.GetVideoEncoder(iCount)
  If (strVideoCompressor <> "") Then
    cboavivencoder.AddItem (strVideoCompressor)
   iCount = iCount + 1
 End If
Loop