WindowsUtilitiesSendMessage Method |
Sends the specified message to a window or windows.
The SendMessage function calls the window procedure for the specified window and does not return until the window procedure has processed the message.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public static IntPtr SendMessage(
IntPtr handle,
int msg,
IntPtr wParam,
IntPtr lParam
)
Parameters
- handle
- Type: SystemIntPtr
The handle. - msg
- Type: SystemInt32
The message to be sent. - wParam
- Type: SystemIntPtr
Additional message-specific information. - lParam
- Type: SystemIntPtr
Additional message-specific information.
Return Value
Type:
IntPtrSpecifies the result of the message processing; it depends on the message sent.
See Also