VideoEdit Gold ActiveX Control

GetThirdPartyDecoderCount

 

Get the number of count of Third Party Decoder available. If use this method, you must set UseDecoderFilter property = true

Public Function GetThirdPartyDecoderCount() as Integer 

 

No Parameter
 

Return Value
Return the the number of count of Third Party Decoder available.

Example

   

Visual Basic Syntax
VideoEdit1.Preview
iCount = VideoEdit1.GetThirdPartyDecoderCount
List2.Clear
For i = 0 To iCount - 1
   List2.AddItem VideoEdit1.GetThirdPartyDecoderName(i)
Next