BPCVid.Devices

[This is preliminary documentation and subject to change.]

The Devices property is a read-only property that returns a BPCDevices collection of the available devices.

Syntax

[ oDevices = ] object.Devices
 

Parts

object
Object expression that resolves to a BPCVid object.
oDevices
Object expression that resolves to a BPCDevices object.

Remarks

You not create an instance of a BPCDevices object directly, instead obtain the BPCDevices collection by using BPCVid.Devices.

In the current version of Broadcast Architecture, only analog television tuner cards are listed in the BPCDevices collection. Future versions will list other input devices, such as a file playback device and output devices.

QuickInfo

  Windows NT: Unsupported.
  Windows: Requires Windows 98.
  Windows CE: Unsupported.
  Header: Declared in vidsvr.odl.
  Import Library: Included as a resource in vid.ocx.
  Unicode: Yes.

See Also

BPCDevices, BPCVid.DeviceCount

Example

The following example retrieves the collection of available devices and stores it in the object variable devices.

'Declare an object variable to receive the collection.
Dim devices As BPCDevices
 
'Obtain the collection from the Video control.
Set devices = vid.Devices