ItemProperties Interface

Definition

A collection of all properties associated with the item.

public interface class ItemProperties : System::Collections::IEnumerable
[System.Runtime.InteropServices.Guid("000630A8-0000-0000-C000-000000000046")]
public interface ItemProperties : System.Collections.IEnumerable
Public Interface ItemProperties
Implements IEnumerable
Attributes
Implements

Remarks

Use the ItemProperties property to return the ItemProperties collection. Use ItemProperties.Item(index), where index is the name of the object or the numeric position of the item within the collection, to return a single ItemProperty object.

Note: The ItemProperties collection is zero-based, meaning that the first item in the collection is referenced by 0.

Use the Add(String, OlUserPropertyType, Object, Object) method to add a new item property to the ItemProperties collection. Use the Remove(Int32) method to remove an item property from the ItemProperties collection.

Note: You can only add or remove custom properties. Custom properties are denoted by the IsUserProperty .

Properties

Application

Returns an Application object that represents the parent Outlook application for the object. Read-only.

Class

Returns an OlObjectClass constant indicating the object's class. Read-only.

Count

Returns an Integer (int in C#) value indicating the count of objects in the specified collection. Read-only.

Item[Object]

Returns an ItemProperty object from the collection.

Parent

Returns the parent Object of the specified object. Read-only.

Session

Returns the NameSpace object for the current session. Read-only.

Methods

Add(String, OlUserPropertyType, Object, Object)

Adds an ItemProperty object to the ItemProperties collection.

GetEnumerator()

This member is inherited from the base type of the parent interface.

Remove(Int32)

Removes an object from the collection.

Applies to