Viscom Software Screen2Video ActiveX Control

GetVideoCompressorCount Method

Description:   

Return the count of Video Compressor. In some development tools, you cannot use Video Compressor Object, for this case, this method is useful.

Usage:   

Screen2Video1.GetVideoCompressorCount
 

Parameter:

No Parameter
 

Return Value:

Return the count for Video Compressor

Example:   

The Visual Basic.Net example 

For i = 0 To AxScreen2Video1.GetVideoCompressorCount - 1
strVideoCompName = AxScreen2Video1.GetVideoCompressorName(i)
cbovideocomp.Items.Add(strVideoCompName)
Next