MeetingItem.Delete Method

Outlook Developer Reference

Deletes an object from the collection.

Syntax

expression.Delete

expression   A variable that represents a MeetingItem object.

Remarks

The Delete mothod deletes a single item in a collection. To delete all items in the Items collection of a folder, you must delete each item starting with the last item in the folder. For example, in the items collection of a folder, AllItems, if there are n number of items in the folder, start deleting the item at AllItems.Item(n), decrementing the index each time until you delete AllItems.Item(1).

See Also