Viscom Software VideoCap ActiveX Control

GetPlaybackDeviceName Method

Description:   

Return the name of Playback Device for specific index. (Support on Windows 7, vista, Windows 8, Windows 10 only)

Usage:   

VideoCap1.GetPlaybackDeviceName Parameter1
 

Parameter:

Parameter1 - the index of  Playback device. First index is zero.
 

Return Value:

Return the name of Playback Device. If the index is not found, return empty string.

Example:   

The Visual Basic.Net example 

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