Public Function DecoderGetCurrentFilterName( _ ByVal indexAsInteger ) as String
Parameter index The index of filter of current graph, the first index is 0.
Return Value
Return the filter name.
Example
Visual Basic Syntax ListBox1.Items.Clear() For i = 0 To AxTimelineControl1.DecoderGetCurrentFiltersCount() - 1 ListBox1.Items.Add(AxTimelineControl1.DecoderGetCurrentFilterName(i)) Next