Platform SDK: Exchange Server |
The PropVal COM class defines an object used to hold a property value used for conditional comparisons.
Use the PropVal object to create a CDO property and value for another Condition object to use.
The following example creates a value for when the CdoPR_MESSAGE_CC_ME property (&H0058000B) is True.
const CdoPR_MESSAGE_CC_ME = &H0058000B Set myPropVal = CreateObject("MSExchange.PropertyValue") myPropVal.Tag = CdoPR_MESSAGE_CC_ME myPropVAl.Value = True