as one part of one customized mode's shortcut.

as one part of one customized mode's shortcut.

Module description

Possible supported key as one part of one customized mode's shortcut.The key can be set in UI or by MAXScript.

Enumerations

enum  KeyOption {
  EKey_Null = 0, EKey_Shift = (1<<0), EKey_Ctrl = (1<<1), EKey_Alt = (1<<2),
  EKey_ShiftCtrl = EKey_Shift|EKey_Ctrl, EKey_CtrlAlt = EKey_Ctrl|EKey_Alt, EKey_AltShift = EKey_Alt|EKey_Shift, EKey_ShiftCtrlAlt = EKey_Shift|EKey_Ctrl|EKey_Alt
}
 

Enumeration Type Documentation

enum 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  {
46  EKey_Null = 0,
48  EKey_Shift = (1<<0),
50  EKey_Ctrl = (1<<1),
52  EKey_Alt = (1<<2),
61  };
Definition: ICUIMouseConfigManager.h:60
Indicates the Ctrl key is selected as one part of one customized mode's shortcut. ...
Definition: ICUIMouseConfigManager.h:48
Indicates the Shift key and Ctrl key and Alt key and are selected as one part of one customized mode'...
Definition: ICUIMouseConfigManager.h:58
Indicates the Alt key and Shift key are selected as one part of one customized mode's shortcut...
Definition: ICUIMouseConfigManager.h:56
Indicates no key is selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:46
Indicates the Shift key and Ctrl key are selected as one part of one customized mode's shortcut...
Definition: ICUIMouseConfigManager.h:52
Indicates the Ctrl key and Alt key are selected as one part of one customized mode's shortcut...
Definition: ICUIMouseConfigManager.h:54
Indicates the Alt key is selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:50