CADability dotNET
Delegate definition for MouseOverCurvesEvent

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

Syntax

C#
public delegate bool MouseOverCurvesDelegate(
	ConstructAction..::..CurveInput sender,
	ICurve[] TheCurves,
	bool up
)
Visual Basic
Public Delegate Function MouseOverCurvesDelegate ( _
	sender As ConstructAction..::..CurveInput, _
	TheCurves As ICurve(), _
	up As Boolean _
) As Boolean
Visual C++
public delegate bool MouseOverCurvesDelegate(
	ConstructAction..::..CurveInput^ sender, 
	array<ICurve^>^ TheCurves, 
	bool up
)

Parameters

sender
Type: CADability.Actions..::..ConstructAction..::..CurveInput
this object
TheCurves
Type: array<CADability.GeoObject..::..ICurve>[]()[][]
curves under the cursor
up
Type: System..::..Boolean
mous was clicked

Return Value

true, if you accept (on of the) curves

See Also