Movie Player ActiveX Control

ExternalPlayOutGetRendererCount

 

Get the number of count of External Renderer . If use this method, you must set UseExternalPlayoutCard property = true

Public Function ExternalPlayOutGetRendererCount() as Integer 

 

No Parameter
 

Return Value
Return the the number of count of External Renderer available.

Example

   

Visual Basic Syntax
MoviePlayer1.UseExternalPlayoutCard = True
iExternalRendererCount = MoviePlayer1.ExternalPlayOutGetRendererCount
For i = 0 To iExternalRendererCount - 1
   cboExternalRenderer.AddItem MoviePlayer1.ExternalPlayOutGetRendererName(i)
Next