Viscom Software VideoCap ActiveX Control

GetPlaybackDeviceCount Method

Description:   

Return the count of Playback Device. (Support on Windows 7, vista, Windows 8, Windows 10 only)

Usage:   

VideoCap1.GetPlaybackDeviceCount
 

Parameter:

No Parameter
 

Return Value:

Return the count of Playback Device.

Example:   

The Visual Basic.Net example 

For i = 0 To VideoCap1.GetPlaybackDeviceCount - 1
            cboplaybackdevice.Items.Add(VideoCap1.GetPlaybackDeviceName(i))
Next