Microsoft DirectX 9.0

MSVidFeatures.Item

This topic applies to Windows XP only.

The Item property retrieves the specified item from the collection.

Syntax

objMSVidFeatures.Item(
    v As Object
) As MSVidFeature

Parameters

  v

Specifies the index of the item to retrieve. The valid range is from 0 to MSVidFeatures.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 IMSVidFeature.

Remarks

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

Set objFeature = colFeatures.Item(1)
Set objFeature = colFeatures(1)

This property is read-only.

See Also