CADability dotNET
Filter mouse messages to the ModelView. return true, if you want to prevent further processing of the mouse message.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public delegate bool MouseFilterDelegate(
	Object sender,
	ref MouseEventArgs e
)
Visual Basic
Public Delegate Function MouseFilterDelegate ( _
	sender As Object, _
	ByRef e As MouseEventArgs _
) As Boolean
Visual C++
public delegate bool MouseFilterDelegate(
	Object^ sender, 
	MouseEventArgs^% e
)

Parameters

sender
Type: System..::..Object
Object which issued the event
e
Type: System.Windows.Forms..::..MouseEventArgs%
Event parameters forwarded

Return Value

true: prevent further processing, false: let the sender process this event

See Also