Movie Maker Timeline Control

GetDESEffect Method

Description

Get the effect name at the specified index.

Syntax

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

 

Parameter

index
   the index of effect.


Return Value

    return the string of effect name.

 

Example - Get All effects name and add to combo box

Visual Basic Syntax
iCount = 0
strEffect = "Empty"
Do While strEffect <> ""
  strEffect = TimelineControl1.GetDESEffect(iCount)
  If strEffect <> "" Then
    cboeffectname.AddItem strEffect
    iCount = iCount + 1
  End If
Loop