Conflict Object

Outlook Developer Reference

Represents an Outlook item that is in conflict with another Outlook item.

Remarks

Each Outlook item has a Conflicts collection object associated with it that represents all the items that are in conflict with that item.

Use the Item method to retrieve a particular Conflict object from the Conflicts collection object, for example:

Example

The following Visual Basic for Applications (VBA) example retrieves a Conflict object from the Conflicts collection object.

Visual Basic for Applications
  Set myConflictItem = myConflicts.Item(1)

See Also