WoW:API IsControlKeyDown: Difference between revisions

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


  IsControlKeyDown();
  IsControlKeyDown();
Line 21: Line 20:
;''Result''
;''Result''
  true | false
  true | false
----
;''Description''
: Returns true if the control key is currently depressed.
----
{{Template:WoW API}}

Revision as of 12:23, 18 June 2006

WoW API < IsControlKeyDown

Returns true if the control key is currently pressed.

IsControlKeyDown();

Arguments
none

Returns
Boolean

Example
 if ( IsControlKeyDown() ) then DoSomething; end
Result
true | false