Viscom Software Screen2Video ActiveX Control

AudioDevice.Name Property

Description:   

Return the name of the AudioDevice.

Usage:   

AudioDevice.Name

Data Type:   

String

Limitations:   

Read Only

Example:   

This Visual Basic example load all audio device into combo:

Dim myAudioDevice as AudioDevice

For Each myAudioDevice In Screen2Video1.AudioDevices
    cboAudioDevice.AddItem myAudioDevice.Name
Next