Viscom Software VideoCap 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:   

VideoCap1.GetVideoCompressorCount
 

Parameter:

No Parameter
 

Return Value:

Return the count for Video Compressor

Example:   

The Visual Basic.Net example 

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