RDOUserProperty object |
RDOUserProperty represents a custom user property defined on an Outlook item .
Returned by:
RDOUserProperties.Item / Find
The example below create a new task and adds a new user property of type olFormula.
set Session =
CreateObject("Redemption.RDOSession") |
Derived from: IDispatch |
|||
|
|||
Properties |
|||
|
|||
Formula |
Returns or sets a String representing the formula for the user property. Read/write.
|
||
IsUserProperty |
Returns the type of the user property. TRUE for thee custom properties, FALSE for the built-in properties (such as Subject - see RDOUserProperties.Find).
|
||
Name |
Returns a String representing the name of the user property. Read-only.
|
||
Printable |
Boolean, read/write. If TRUE (by default) the property name and value will be printed along with the message header contents
|
set Session =
CreateObject("Redemption.RDOSession")
|
|
Required |
Boolean, read/write. If TRUE and the property is missing or empty, Outlook UI and Object Model will display an error message when the message is saved. The default value is FALSE.
|
set Session =
CreateObject("Redemption.RDOSession")
|
|
Type |
Returns an rdoUserPropertyType constant indicating the type of the specified object. Read-only.
olText (0x1) olInteger (0x14)
|
|
|
ValidationFormula |
Returns or sets a String indicating the validation formula for the user property. Read/write.
|
|
|
ValidationText |
Returns or sets a String specifying the validation text for the specified user property. Read/write.
|
|
|
Value |
Returns or sets a Variant indicating the value for the specified custom property. Read/write.
|
|
|
Methods |
|||
|
|||
Delete |
Deletes the user property.
|
||
|