Share via


SimpleList.Delete

Ee784231.c++_on(en-US,CS.10).gifEe784231.vb_off(en-US,CS.10).gif

Use this method to delete the specified item from the SimpleList object.

Definition

Sub Delete(Index As Long)

Parameters

Index

A Long that contains the index value of the item to delete.

Return Values

None.

Error Values

This method 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.

Example

' The following example deletes the SimpleList item at index 1008 
' oSimpleList is a Commerce SimpleList object
oSimpleList.Delete(1008)

See Also

SimpleList Object

SimpleList.Add

SimpleList.Count


All rights reserved.