In This Article

PointHitTestParameters Class

Represents a class for hit test parameters that use a Point.

public class PointHitTestParameters : HitTestParameters, ICloneable
Inheritance:
object HitTestParameters object
Implements:
ICloneable

Constructors

PointHitTestParameters(PointHitTestParameters)

Initializes a new instance of the PointHitTestParameters class by copying values from an existing instance of PointHitTestParameters.

protected PointHitTestParameters(PointHitTestParameters copyFrom)
Parameter Type Description
copyFrom PointHitTestParameters

The instance whose values will be copied to initialize the new instance.

PointHitTestParameters(Point)

Initializes a new instance of the PointHitTestParameters class.

public PointHitTestParameters(Point point)
Parameter Type Description
point Point

The Point to test.

Properties

Point

Gets the Point to test.

public Point Point { get; }

Property Value

Point:

The Point to test.

Methods

Clone()

Creates a new PointHitTestParameters instance that is a copy of the current instance.

public override HitTestParameters Clone()

Returns

HitTestParameters:

A new instance of PointHitTestParameters.

Inherited Members