CADability dotNET
Method definition of the ClickOnSelectedObjectEvent

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

Syntax

C#
public delegate void ClickOnSelectedObjectDelegate(
	IGeoObject selected,
	IView vw,
	MouseEventArgs e,
	ref bool handled
)
Visual Basic
Public Delegate Sub ClickOnSelectedObjectDelegate ( _
	selected As IGeoObject, _
	vw As IView, _
	e As MouseEventArgs, _
	ByRef handled As Boolean _
)
Visual C++
public delegate void ClickOnSelectedObjectDelegate(
	IGeoObject^ selected, 
	IView^ vw, 
	MouseEventArgs^ e, 
	bool% handled
)

Parameters

selected
Type: CADability.GeoObject..::..IGeoObject
The object on which the click occurred.
vw
Type: CADability..::..IView
The view in which the click happend
e
Type: System.Windows.Forms..::..MouseEventArgs
The original MouseEventArgs propagated from the mouse event
handled
Type: System..::..Boolean%
If handled set to true by the handler of the event, no further action will be performed.

See Also