VideoEdit Gold ActiveX Control

GetTransitionName

 

Return the name of Transition for specific index.

Public Function GetTransitionName(
  ByVal iIndex As Integer
) as String 

 

Parameter
iIndex
The index of Transition, the first index is 0.

Return Value
Return the name of Filter.

Example

   

Visual Basic Syntax
iCount = VideoEdit1.GetTransitionCount
List2.Clear
For i = 0 To iCount - 1
   List2.AddItem VideoEdit1.GetTransitionName(i)
Next