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 MouseOverGeoObjectsDelegate(
	ConstructAction..::..GeoObjectInput sender,
	IGeoObject[] TheGeoObjects,
	bool up
)
Visual Basic
Public Delegate Function MouseOverGeoObjectsDelegate ( _
	sender As ConstructAction..::..GeoObjectInput, _
	TheGeoObjects As IGeoObject(), _
	up As Boolean _
) As Boolean
Visual C++
public delegate bool MouseOverGeoObjectsDelegate(
	ConstructAction..::..GeoObjectInput^ sender, 
	array<IGeoObject^>^ TheGeoObjects, 
	bool up
)

Parameters

sender
Type: CADability.Actions..::..ConstructAction..::..GeoObjectInput
this object
TheGeoObjects
Type: array<CADability.GeoObject..::..IGeoObject>[]()[][]
GeoObjects under the cursor
up
Type: System..::..Boolean
mous was clicked

Return Value

true, if you accept (one of the) GeoObjects

See Also