Microsoft DirectX 9.0

MSVidOutputDevices.Item

This topic applies to Windows XP only.

The Item property retrieves the specified item from the collection.

Syntax

objMSVidOutputDevices.Item(
    v
) As MSVidOutput

Parameters

  v

Specifies the index of the item to retrieve. The valid range is from 0 to MSVidOutputDevices.Count - 1.

Error Codes

If the property fails, an error is raised and Err.Number is set to a value other than zero.

Return Values

Returns an MSVidOutputDevice object.

Remarks

This property is the default member of the MSVidOutputDevices object, so you do not need to specify the property name when you retrieve it. For example, the following are equivalent:

Set objOutput = colOutputs.Item(1)
Set objOutnput = colOutputs(1)

This property is read-only.

See Also