|
RDOMAPIFormInfo is .
Returned by:
RDOMAPIFormContainer.Item
RDOMAPIFormContainer.ResolveMessageClass
RDOMAPIFormMgr.ResolveMessageClass
RDOMAPIFormMgr.SelectForm
The example below enumerates all
installed forms in the local form container.
set
Session = CreateObject("Redemption.RDOSession")
Session.MAPIOBJECT = Application.Session.MAPIOBJECT
set
PersonaFormContainer = Session.MAPIFormMgr.OpenLocalFormContainer
for
each
FormInfo
in
PersonaFormContainer
Debug.Print
FormInfo.DisplayName & " " &
FormInfo.MessageClass
next
|
|
|
|
Properties |
|
Category
|
String, read-only. Corresponds to the PR_FORM_CATEGORY MAPI property.
|
|
Clsid
|
String, read-only. Corresponds to the PR_FORM_CLSID MAPI property.
|
|
Comment
|
String, read-only. Corresponds to the PR_COMMENT MAPI property.
|
|
ContactName
|
String, read-only. Corresponds to the PR_FORM_CONTACT_NAME MAPI
property.
|
|
DesignerGuid
|
String, read-only. Corresponds to the PR_FORM_DESIGNER_GUID MAPI
property.
|
|
DesignerName
|
String, read-only. Corresponds to the PR_FORM_DESIGNER_NAME MAPI
property.
|
|
DisplayName
|
String, read-only. Corresponds to the PR_DISPLAY_NAME MAPI property.
|
|
IsHidden
|
Boolean, read-only. Corresponds to the PR_FORM_HIDDEN MAPI property.
|
|
LargeIcon
|
not yet implemented
|
|
MessageClass
|
String, read-only. Corresponds to the PR_MESSAGE_CLASS MAPI property.
|
|
ParentFormContainer
|
Returns the parent
RDOMAPIFormContainer object.
|
|
SmallIcon
|
not yet implemented
|
|
Subcategory
|
String, read-only. Corresponds to the PR_FORM_CATEGORY_SUB MAPI
property.
|
|
Version
|
String, read-only. Corresponds to the PR_FORM_VERSION MAPI property.
|
|
|
|