Message.Create(IntPtr, Int32, IntPtr, IntPtr) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new Message.
public:
static System::Windows::Forms::Message Create(IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam);
public static System.Windows.Forms.Message Create (IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam);
static member Create : nativeint * int * nativeint * nativeint -> System.Windows.Forms.Message
Public Shared Function Create (hWnd As IntPtr, msg As Integer, wparam As IntPtr, lparam As IntPtr) As Message
Parameters
- hWnd
-
IntPtr
nativeint
The window handle that the message is for.
- msg
- Int32
The message ID.
- wparam
-
IntPtr
nativeint
The message wparam
field.
- lparam
-
IntPtr
nativeint
The message lparam
field.
Returns
A Message that represents the message that was created.
Remarks
Use the Create method to create a Message to wrap a message sent by Windows.
Applies to
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.