Delegate MouseFilterDelegate
Filter mouse messages to the ModelView. return true, if you want to prevent further processing of the mouse message.
Namespace: CADability
Assembly: CADability.dll
Syntax
public delegate bool MouseFilterDelegate(object sender, ref MouseEventArgs e);
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | sender | Object which issued the event |
| MouseEventArgs | e | Event parameters forwarded |
Returns
| Type | Description |
|---|---|
| System.Boolean | true: prevent further processing, false: let the sender process this event |