| Platform SDK: Exchange Server |
The ExistsCondition COM class defines an object that you can use to test for the existence of a particular property (MAPI).
Use the ExistsCondition to specify a condition that must be satisfied for the rule to apply.
The following example identifies messages where the CdoPR_ACCOUNT property (&H3A00001E) is set:
const CdoPR_ACCOUNT = &H3A00001E
Set objExistsCond = CreateObject("MSExchange.ExistsCondition")
objExistsCond.PropertyTag = CdoPR_ACCOUNT
...