Movie Maker Timeline Control

GetWMVProfile Method

Description

Get the name of wmv profile at the specified index.

Syntax

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

 

Parameter

index
   the index of wmv profile


Return Value

    return the string of wmv profile name

 

Example

Visual Basic Syntax
iCount = 0
strWMVProfile = "Empty"
Do While strWMVProfile <> ""
         strWMVProfile = TimelineControl1.GetWMVProfile(iCount)
       If (strWMVProfile <> "") Then
         cboWMVProfile.AddItem (strWMVProfile)
         iCount = iCount + 1
       End If
Loop