Core Function ControlGetHandle
From Sputnik Wiki
(Difference between revisions)
m (1 revision) |
m (1 revision) |
Latest revision as of 12:37, 14 June 2015
ControlGetHandle ( <title>, <text>, <controlID> )
Contents |
Description
Retrieves the internal handle of 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 the handle (HWND) value.
Failure: Returns 0 (@PTRZero).
Remarks
None.
Example
$handle = ControlGetHandle("Untitled - Notepad", "", "Edit1"); println($handle);