"IsControlKeyDown", not "IsCtrl"
m ({{wowapi}}, returns / result.) |
("IsControlKeyDown", not "IsCtrl") |
||
| Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} __NOTOC__ | ||
Returns true if the shift key is currently depressed. | Returns true if the shift/ctrl/alt key is currently depressed. | ||
IsShiftKeyDown(); | shiftDown = IsShiftKeyDown(); | ||
ctrlDown = IsControlKeyDown(); | |||
altDown = IsAltKeyDown(); | |||
== Arguments == | |||
:''none'' | |||
: | == Returns == | ||
:;Boolean : 1 (true) if the given key is currently held down, nil otherwise. | |||
- | == Related Events == | ||
:[[Events/M#MODIFIER_STATE_CHANGED|MODIFIER_STATE_CHANGED]] - fires when shift/ctrl/alt keys are pressed or released | |||
== Example == | |||
if ( IsShiftKeyDown() ) then DoSomething(); end | if ( IsShiftKeyDown() ) then DoSomething(); end | ||