CADability dotNET
Method declaration for the FilterMouseMessagesEvent.

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

Syntax

C#
public delegate void FilterMouseMessagesDelegate(
	SelectObjectsAction..::..MouseAction mouseAction,
	MouseEventArgs e,
	IView vw,
	ref bool handled
)
Visual Basic
Public Delegate Sub FilterMouseMessagesDelegate ( _
	mouseAction As SelectObjectsAction..::..MouseAction, _
	e As MouseEventArgs, _
	vw As IView, _
	ByRef handled As Boolean _
)
Visual C++
public delegate void FilterMouseMessagesDelegate(
	SelectObjectsAction..::..MouseAction mouseAction, 
	MouseEventArgs^ e, 
	IView^ vw, 
	bool% handled
)

Parameters

mouseAction
Type: CADability.Actions..::..SelectObjectsAction..::..MouseAction
The mouse action causing the event
e
Type: System.Windows.Forms..::..MouseEventArgs
Original MouseEventArgs
vw
Type: CADability..::..IView
The view in which the mouse action took place.
handled
Type: System..::..Boolean%
If handled set to true by the handler of the event, no further action will be performed.

See Also