Possible supported key as one part of one customized mode's shortcut.The key can be set in UI or by MAXScript.
More...
Possible supported key as one part of one customized mode's shortcut.The key can be set in UI or by MAXScript.
◆ KeyOption
Enumerator |
---|
EKey_Null | Indicates no key is selected as one part of one customized mode's shortcut.
Indicates the Shift key is selected as one part of one customized mode's shortcut.
|
EKey_Shift | Indicates the Ctrl key is selected as one part of one customized mode's shortcut.
|
EKey_Ctrl | Indicates the Alt key is selected as one part of one customized mode's shortcut.
|
EKey_Alt | Indicates the Shift key and Ctrl key are selected as one part of one customized mode's shortcut.
|
EKey_ShiftCtrl | Indicates the Ctrl key and Alt key are selected as one part of one customized mode's shortcut.
|
EKey_CtrlAlt | Indicates the Alt key and Shift key are selected as one part of one customized mode's shortcut.
|
EKey_AltShift | Indicates the Shift key and Ctrl key and Alt key and are selected as one part of one customized mode's shortcut.
|
EKey_ShiftCtrlAlt | |
44 {
50 EKey_Ctrl = (1<<1),
54 EKey_ShiftCtrl = EKey_Shift|EKey_Ctrl,
56 EKey_CtrlAlt = EKey_Ctrl|EKey_Alt,
58 EKey_AltShift = EKey_Alt|EKey_Shift,
60 EKey_ShiftCtrlAlt = EKey_Shift|EKey_Ctrl|EKey_Alt,
61 };
@ EKey_Alt
Indicates the Shift key and Ctrl key are selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:52
@ EKey_Null
Indicates no key is selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:46
@ EKey_Shift
Indicates the Ctrl key is selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:48