Difference between revisions of "ISInterface:EmulateKeyRelease"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool EmulateKeyRelease(char *Combo)
 
== Purpose ==
 
== Purpose ==
 
+
To release keys from being pressed by [[ISInterface:EmulateKeyPress|EmulateKeyPress]]
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*char *Combo
 +
:'''[in]''' Name of the key combo to be released
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 +
===Release a key===
 +
*pISInterface->EmulateKeyRelease("shift");
  
  
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
 
+
* [[ISInterface:EmulateTyping|EmulateTyping]]
 +
* [[ISInterface:EmulateKeyPress|EmulateKeyPress]]
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Latest revision as of 23:25, 2 September 2005

Syntax

  • bool EmulateKeyRelease(char *Combo)

Purpose

To release keys from being pressed by EmulateKeyPress

Usage

Parameters

  • char *Combo
[in] Name of the key combo to be released

Return Value

  • bool
Returns true on success, false on failure

Examples

Release a key

  • pISInterface->EmulateKeyRelease("shift");


See Also