Core Function ControlGetHandle
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> ControlGetHandle ( <title>, <text>, <controlID> ) </pre> === Description === Retrieves the internal handle of a control. === Parameters === ==== Title ==== The title o...")
Newer edit →
(Created page with "<pre> ControlGetHandle ( <title>, <text>, <controlID> ) </pre> === Description === Retrieves the internal handle of a control. === Parameters === ==== Title ==== The title o...")
Newer edit →
Revision as of 20:03, 28 January 2013
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 empty string.
Remarks
None.
Example
$handle = ControlGetHandle("Untitled - Notepad", "", "Edit1"); println($handle);