VideoEdit Gold ActiveX Control

WMVProfiles Collection

Description

WMVProfiles is a collection of WMVProfile objects. A WMVProfiles collection is used to obtain a list of available window media profile.

 

Example

[Visual Basic Syntax] (This example show how to fill a combobox will all available  wmv profile)
Dim profile As WMVProfile
For Each profile In Me.VideoEdit1.WMVProfiles
     Me.cboProfile.AddItem profile.Name
Next