Viscom Software VideoCap ActiveX Control

GetWMVProfileCount Method

Description:   

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

Usage:   

VideoCap1.GetWMVProfileCount
 

Parameter:

No Parameter
 

Return Value:

Return the count for WMV Profile

Example:   

The Visual Basic.Net example 

For i = 0 To AxVideoCap1.GetWMVProfileCount - 1
strWMVProfileName = AxVideoCap1.GetWMVProfileName(i)
cbowmvprofile.Items.Add(strWMVProfileName)
Next