Microsoft DirectX 8.1 (C++) |
This topic applies to Windows XP Home Edition and Windows XP Professional only.
The Item property retrieves the ChannelLineup object from this ChannelLineups object collection at the specified index.
Syntax
objChannelLineups.Item(varindex) As ChannelLineup
Parameters
index
[in] Specifies the item to be retrieved. This must be a numerical index in the range from 0 to ChannelLineups.Count minus 1.
Error Codes
If the property fails, an error is raised and Err.Number is set to a value other than zero.
Return Values
This property returns a ChannelLineup object.
Remarks
This property is the default member of the object, and you do not need to specify the property name when you retrieve it.
Example Code
' Retrieving the 25th item in the collection.
Dim objChannelLineup As ChannelLineup
objChannelLineup = objChannelLineups.Item(24)
' The following is equivalent, because this is the default property.
objChannelLineup = objChannelLineups(24)
See Also