CADability dotNET
While the normal HitTest only checkes the Location of the object this method checks the hittest of the object expanded according to the projection in this area

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

Syntax

C#
public bool RealHitTest(
	Projection..::..PickArea area,
	bool onlyInside
)
Visual Basic
Public Function RealHitTest ( _
	area As Projection..::..PickArea, _
	onlyInside As Boolean _
) As Boolean
Visual C++
public:
bool RealHitTest(
	Projection..::..PickArea^ area, 
	bool onlyInside
)

Parameters

area
Type: CADability..::..Projection..::..PickArea
Pick area to check
onlyInside
Type: System..::..Boolean
true, if the whole object must reside inside the pickarea, false if overlapping will suffice

Return Value

true when a hit is recognized

See Also