Engine4ToolAdapter.Manipulate Method
Called once for every Windows message during a user interaction sequence, until it returns False.
Manipulate(System.Int32 msg, IntPtr wParam, IntPtr lParam)
Called once for every Windows message during a user interaction sequence, until it returns False.Syntax
public virtual System.Boolean Manipulate (
System.Int32 msg,
IntPtr wParam,
IntPtr lParam
)
Parameters
The Windows message identifier, e.g. WM_KEYDOWN.
The WPARAM property of the Windows message.
The LPARAM property of the Windows message.
Return Value
True if the interaction sequence should continue; False if it should be completed.
Remarks
Called by the adapter class until it returns False or until the tool is removed from the map control. It should return False when it receives a message that should complete the current user interaction, or True to continue the interaction.
Platforms
Windows