Platform SDK: Broadcast Architecture

BPCVid.Output

The Output property sets or returns the device to which the Video control sends output. Sending output is not supported in the current version of Broadcast Architecture. Visual Basic syntax is shown.

object.Output[ = oDevice]

Parts

object
Object expression that resolves to a BPCVid object.
oDevice
Object expression that resolves to a BPCDeviceBase object.

Remarks

When your application sets Output to a valid output device, the media stream coming from the Input property is:

To suppress this output, your application can set Output to the value Nothing or to the BPCDeviceBase object named Null in the BPCDevices collection.

Requirements

  Windows NT/2000: Unsupported.
  Windows 95/98: Requires Windows 98.
  Header: Declared in vidsvr.odl.
  Import Library: Included as a resource in vid.ocx.

See Also

BPCVid, BPCVid.Input, BPCDeviceBase

Examples

The following searches the BPCDevices collection for an output device and sets it as the output device for an instance of the Video control, vid.

For Each Device In vid.Devices 
    If Device.IsOutput Then 
        vid.Output = Device 
        Exit For 
    End If
Next