Core Function ControlGetText
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> ControlGetText ( <title>, <text>, <controlID> ) </pre> === Description === Retrieves text from a control. === Parameters === ==== Title ==== The title of the window to...")
Newer edit →
(Created page with "<pre> ControlGetText ( <title>, <text>, <controlID> ) </pre> === Description === Retrieves text from a control. === Parameters === ==== Title ==== The title of the window to...")
Newer edit →
Revision as of 19:10, 28 January 2013
ControlGetText ( <title>, <text>, <controlID> )
Contents |
Description
Retrieves text from a control.
Parameters
Title
The title of the window to access.
Text
The text of the window to access.
controlID
The control to interact with.
Return Value
Success: Returns complete text.
Failure: Returns empty string.
Remarks
None.
Example
$text = ControlGetText("Untitled - Notepad", "", "Edit1"); MsgBox("Full text read was: $text");