SMAPIVerb

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Describes a MAPI verb.

Header file:

Mapiform.h

typedef struct
{
  ULONG lVerb;
  LPTSTR szVerbname;
  DWORD fuFlags;
  DWORD grfAttribs;
  ULONG ulFlags; /* Either 0 or MAPI_UNICODE */
} SMAPIVerb, FAR * LPMAPIVERB;

Members

  • lVerb
    Code representing the verb that is passed to IMAPIForm::DoVerb. Standard verbs are defined in the header file Exchform.h.

  • szVerbname
    Display name of the verb as it appears on the form menu.

  • fuFlags
    Flags for the verb.

  • grfAttribs
    Attributes of the verb.

  • ulFlags
    Flag indicating the format of the verb's display name. The following flag can be set:

    • MAPI_UNICODE
      The display name is in Unicode format. If the MAPI_UNICODE flag is not set, the display name is in ANSI format.

Remarks

The SMAPIVerb structure is passed as a parameter in the following methods:

-
IMAPIFormContainer::ResolveMultipleMessageClasses

-
IMAPIFormMgr::ResolveMultipleMessageClasses

See Also

Reference

CbMessageClassArray

Concepts

MAPI Structures