Microsoft DirectX 8.1 (C++)

ICAOffers.Item

This topic applies to Windows XP Home Edition and Windows XP Professional only.

The Item property retrieves an offer from the collection.

Syntax

objCAOffers.Item(Index) As CAOffer

Parameters

  Index

VARIANT that specifies the offer to retrieve. This parameter can be a zero-based index into the collection, or a CAOffer 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 a CAOffer object.

Remarks

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

Set offer = offers.Item(1)
Set offer = offers(1)

This property is read-only.

See Also