Share via


SimpleList.Item

Ee783878.c++_on(en-US,CS.10).gifEe783878.vb_off(en-US,CS.10).gif

The Item property is a read/write Variant that contains an element of the SimpleList object. An initialized Variant is stored at a specified array index. If an item is already stored at the specified index, that item is overwritten by the put procedure.

Definition

Property Item(Index As Long) As Variant

Parameters

Index

A Long that contains the index of the item.

Error Values

This property sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to either standard or custom COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors.

The following table shows the custom COM errors that this method can return.

Constant Description
DISP_E_BADINDEX The Index parameter references an out-of-range value. This means that Index contains a value either larger than the SimpleList or less than zero.

Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.

Remarks

For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.

When putting a value, use the putref_Item method if you are setting an object reference; use the put_Item method if you are setting a scalar value.

See Also

SimpleList Object


All rights reserved.