This documentation is for the old version. Go to the latest Graphics Mill docs

VObject.HitTest Method

Checks if a point with specified coordinates belongs to the v-object.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly: Aurigma.GraphicsMill.WinControls.VectorObjects (in Aurigma.GraphicsMill.WinControls.VectorObjects.dll)

Syntax

Visual Basic
Public MustOverride Function HitTest ( _
	point As PointF, _
	precisionDelta As Single _
) As Boolean
C#
public abstract bool HitTest(
	PointF point,
	float precisionDelta
)

Parameters

point

Type: System.Drawing.PointF

The coordinates of a point to check.
precisionDelta

Type: System.Single

Desired precision.

Return Value

true, if the point belongs to the v-object; otherwise, false.

See Also

Reference