Public Function GetCurGrahpFilterName( ByVal iIndexAsInteger ) as String
Parameter iIndex The index of filter of current graph, the first index is 0.
Return Value Return the name ofFilter.
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