Microsoft DirectX 8.1 (C++) |
This topic applies to Windows XP Home Edition and Windows XP Professional only.
The Item property retrieves a component from the collection.
Syntax
objCAComponents.Item(Index) As ICAComponent
Parameters
Index
Specifies the component to retrieve. This parameter can be a zero-based index into the collection, or an ICAComponent object already in the collection.
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 ICAComponent object.
Remarks
This property is the default member of the ICAComponents object, so you do not need to specify the property name when you retrieve it. For example, the following are equivalent:
Set component = components.Item(1)
Set component = components(1)
Remarks
This property is read-only.
See Also