OLECMDEXECOPT
The OLECMDEXECOPT enumeration specifies command execution options. One value from this enumeration is passed in the nCmdExecOpt argument of IOleCommandTarget::Exec.
typedef enum
{
OLECMDEXECOPT_DODEFAULT = 0,
OLECMDEXECOPT_PROMPTUSER = 1,
LECMDEXECOPT_DONTPROMPTUSER = 2,
OLECMDEXECOPT_SHOWHELP = 3
} OLECMDEXECOPT;
Elements
-
OLECMDEXECOPT_DODEFAULT
-
Prompt the user for input or not, whichever is the default behavior.
-
OLECMDEXECOPT_PROMPTUSER
-
Execute the command after obtaining user input.
-
OLECMDEXECOPT_DONTPROMPTUSER
-
Execute the command without prompting the user. For example, clicking the Print toolbar button causes a document to be immediately printed without user input.
-
OLECMDEXECOPT_SHOWHELP
-
Show help for the corresponding command, but do not execute
See Also
IOleCommandTarget::Exec