Returns true if the given coordinate is part of the interactor.

Namespace: TallComponents.Interaction
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.43.1

Syntax

C#
protected virtual bool IsOver(
	double x,
	double y
)
Visual Basic
Protected Overridable Function IsOver ( _
	x As Double, _
	y As Double _
) As Boolean

Parameters

x
Type: System..::..Double
The x coordinate inside the interactor.
y
Type: System..::..Double
The y coordinate inside the interactor.

Return Value

Whether the coordinate is part of the interactor.

Remarks

By default, the layer returns the same result as the interactor that it is a layer of.

See Also