Viscom Software VideoCap ActiveX Control

GetVideoCompressorName Method

Description:   

Return the name of VideoCompressor for specific index.. In some development tools, you cannot use VideoCompressor Object, for this case, this method is useful.

Usage:   

VideoCap1.GetVideoCompressorName Parameter1
 

Parameter:

Parameter1 - the index of Video Compressor.
 

Return Value:

Return the name of Video Compressor. If the index is not found, return empty string.

Example:   

The Visual Basic.Net example 

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