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 VideoEdit1.Preview iCount = VideoEdit1.GetCurGraphFiltersCount List1.Clear For i = 0 To iCount - 1 List1.AddItem VideoEdit1.GetCurGraphFilterName(i) Next