InkEdit.WndProc Method
InkEdit.WndProc Method |
Processes messages.
This member overrides the System.Windows.Forms.Control.WndProc method.
Definition
Visual Basic .NET Overrides Protected Sub WndProc( _
ByRef m As Message _
)C# protected override void WndProc(
ref Message m
);Managed C++ protected: void WndProc(
Message **m
);
Parameters
m System.Windows.Forms.Message. The Message to process.
Remarks
All messages are sent to the WndProc method after getting filtered through the System.Windows.Forms.Control.PreProcessMessage method.
The WndProc method corresponds exactly to the Windows WindowProc Function function. For more information about processing Windows messages, see the WindowProc Function function documentation in the Windows Platform SDK reference located in the MSDN Library.
See Also