Leadtools.Controls.Keys = function() { };
Leadtools.Controls.Keys.prototype = {
	modifiers = -0x10000,
	none = 0,
	enter = 13,
	escape = 27,
	space = 32,
	keyCode = 0xFFFF,
	shift = 0x10000,
	control = 0x20000,
	alt = 0x40000,
	
 };
            | Value | Member | Description | 
|---|---|---|
| -0x10000 | modifiers | Mask for modifier keys | 
| 0 | none | No key | 
| 13 | enter | Enter key | 
| 27 | escape | Escape key | 
| 32 | space | Space key | 
| 0xFFFF | keyCode | Mask for key codes | 
| 0x10000 | shift | Shift key | 
| 0x20000 | control | Control key | 
| 0x40000 | alt | ALT key |