VideoEdit Gold ActiveX Control

Transitions Collection

Description

Transitions is a collection of Transition objects. A Transitions collection is used to obtain a list of available Transition.

 

Example

[Visual Basic Syntax] (This example show how to fill a combobox will all available Transition)
Dim myTransition As Transition
For Each myTransition In VideoEdit1.Transitions
    cboTran.AddItem myTransition.Name
Next