SimpleItems Interface

Represents a set of possibly heterogeneous Microsoft Outlook items, with each member in the set tracking only a small, common set of properties that apply to Outlook items in general.

Namespace:  Microsoft.Office.Interop.Outlook
Assembly:  Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)

Syntax

'Declaration
<GuidAttribute("00063102-0000-0000-C000-000000000046")> _
<CoClassAttribute(GetType(SimpleItemsClass))> _
Public Interface SimpleItems _
    Inherits _SimpleItems
'Usage
Dim instance As SimpleItems
[GuidAttribute("00063102-0000-0000-C000-000000000046")]
[CoClassAttribute(typeof(SimpleItemsClass))]
public interface SimpleItems : _SimpleItems

Remarks

This is a .NET interface derived from a COM coclass that is required by managed code for interoperability with the corresponding COM object. Use this derived interface to access all method, property, and event members of the COM object. However, if a method or event you want to use shares the same name under the same COM object, cast to the corresponding primary interface to call the method, and cast to the latest events interface to connect to the event. Refer to this topic for information about the COM object. For information about the method and property members of the COM object, see _SimpleItems.

The SimpleItems collection is used to represent child objects of a Conversation node object. This collection has only few members and serves the purpose of providing easy access to these items, as opposed to the Items and Results collections, which have more members.

The order of items in the collection is the same as the ordering of items in the conversation. The collection is ordered by the value of the CreationTime property of each item in ascending order.

See Also

Reference

SimpleItems Members

Microsoft.Office.Interop.Outlook Namespace

Other Resources

How to: Get and Enumerate Selected Conversations