KEYMODIFIERS

The KEYMODIFIERS enumeration values are flags used in calls to IOleControlSite::TranslateAccelerator to describe additional keyboard states that can modify the meaning of the keyboard messages that are also passed into IOleControlSite::TranslateAccelerator.

typedef enum tagKEYMODIFIERS 
{ 
    KEYMOD_SHIFT       = 0x00000000, 
    KEYMOD_CONTROL     = 0x00000001, 
    KEYMOD_ALT         = 0x00000002 
} KEYMODIFIERS; 
 

Elements

KEYMOD_SHIFT
The Shift key is currently depressed.
KEYMOD_CONTROL
The Control key is currently depressed.
KEYMOD_ALT
The Alt key is currently depressed.

See Also

IOleControlSite::TranslateAccelerator