Difference between revisions of "ISInterface:EmulateTyping"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool EmulateTyping(char *Text)
 
== Purpose ==
 
== Purpose ==
 
+
To emulate keyboard typing
 +
''Note:'' Cannot send carriage returns
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 +
*char *Text
 +
:'''[in]''' Text to be typed
  
 
=== Return Value ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
+
===Send some text===
 +
*pISInterface->EmulateTyping("blah blah balbhalbahsdikrlxokowefb");
  
 
== See Also ==
 
== See Also ==
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
 
+
* [[ISInterface:EmulateKeyPress|EmulateKeyPress]]
 +
* [[ISInterface:EmulateKeyRelease|EmulateKeyRelease]]
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Latest revision as of 23:23, 2 September 2005

Syntax

  • bool EmulateTyping(char *Text)

Purpose

To emulate keyboard typing Note: Cannot send carriage returns

Usage

Parameters

  • char *Text
[in] Text to be typed

Return Value

  • bool
Returns true on success, false on failure

Examples

Send some text

  • pISInterface->EmulateTyping("blah blah balbhalbahsdikrlxokowefb");

See Also