Movie Player ActiveX Control

GetCurGraphFilterName

 

Get specific filter name on current graph.

Public Function GetCurGrahpFilterName(
  ByVal iIndex As Integer
) as String 

 

Parameter
iIndex
The index of filter of current graph, the first index is 0.

Return Value
Return the name of Filter.

Example

   

Visual Basic Syntax
MoviePlayer1.FileName="c:\test.mpg"
iCount = MoviePlayer1.GetCurGraphFiltersCount
List1.Clear
For i = 0 To iCount - 1
   List1.AddItem MoviePlayer1.GetCurGraphFilterName(i)
Next