VideoEdit Gold ActiveX Control

GetVideoCompressorName

 

Return the name of AVI Video Compressor for specific index.

Public Function GetVideoCompressorName(
  ByVal iIndex As Integer
) as String 

 

Parameter
iIndex
The index of Video Compressor, the first index is 0.

Return Value
Return the name of Filter.

Example

   

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