Click or drag to resize

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:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
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: IntPtr
Specifies the result of the message processing; it depends on the message sent.
See Also