|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| extern.sendMessage(WindowHandle, ApiID, wParam, lParam) |
Parameters
| HANDLE | WindowHandle | Handle of the window to check.
| | INT | ApiID | Windows API message ID (WM_)
| | INT | wParam | Specifies additional message-specific information.
| | INT | lParam | Specifies additional message-specific information. |
Return value
No value is returned.
Description
This function sends the specified message to a window. It calls the window procedure for the specified window and does not return until the message was processed.
The window API function SendMessage is used to send the message. |
|
|
|