Movie Maker Timeline Control

DecoderGetCurrentFiltersCount

 

Get the total count of filters on current graph.

Public Function DecoderGetCurrentFiltersCount() as Integer

 

No Parameter

Return Value

Return total count of filters on current graph.


Example

   

Visual Basic Syntax
ListBox1.Items.Clear()
For i = 0 To AxTimelineControl1.DecoderGetCurrentFiltersCount() - 1
    ListBox1.Items.Add(AxTimelineControl1.DecoderGetCurrentFilterName(i))
Next