WoW:API IsShiftKeyDown: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
m ({{wowapi}}, returns / result.)
Line 1: Line 1:
<center>'''IsShiftKeyDown''' ''-Documentation by AlexanderYoshi-''</center>
{{wowapi}}
 
Returns true if the shift key is currently depressed.
Returns true if the shift key is currently depressed.


Line 13: Line 12:
;''Returns''
;''Returns''


:;Boolean
:;Boolean : 1 (true) if SHIFT is currently held down, nil otherwise.


----
----
Line 20: Line 19:


;''Result''
;''Result''
  true | false
  true | nil
 
----
;''Description''
 
: Returns true if the shift key is currently depressed.
 
----
{{Template:WoW API}}

Revision as of 12:32, 18 June 2006

WoW API < IsShiftKeyDown

Returns true if the shift key is currently depressed.

IsShiftKeyDown();

Arguments
none

Returns
Boolean
1 (true) if SHIFT is currently held down, nil otherwise.

Example
 if ( IsShiftKeyDown() ) then DoSomething(); end
Result
true | nil