3ds Max C++ API Reference
as one part of one customized mode's shortcut.

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

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
}
 

Detailed Description

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

Enumeration Type Documentation

◆ KeyOption

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  };
@ 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_AltShift
Indicates the Shift key and Ctrl key and Alt key and are selected as one part of one customized mode'...
Definition: ICUIMouseConfigManager.h:58
@ EKey_Null
Indicates no key is selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:46
@ EKey_Ctrl
Indicates the Alt key is selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:50
@ EKey_ShiftCtrlAlt
Definition: ICUIMouseConfigManager.h:60
@ EKey_CtrlAlt
Indicates the Alt key and Shift key are selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:56
@ EKey_ShiftCtrl
Indicates the Ctrl key and Alt key are selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:54
@ EKey_Shift
Indicates the Ctrl key is selected as one part of one customized mode's shortcut.
Definition: ICUIMouseConfigManager.h:48