WindowMessage Delegate

Definition

Represents a delegate that is used to reference the method that will handle window messages.

public delegate void WindowMessage(int msgId, IntPtr parameter1, IntPtr parameter2);

Parameters

msgId
Int32

The message identifier.

parameter1
IntPtr

A pointer to the first message parameter. The value of this parameter depends on the message.

parameter2
IntPtr

A pointer to the second message parameter. The value of this parameter depends on the message.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to