Class PointerArgs
Inheritance
System.Object
PointerArgs
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class PointerArgs : Object
Constructors
PointerArgs(Point, Point, Boolean)
Initializes a new instance of the PointerArgs class.
Declaration
public PointerArgs(Point point = null, Point transformedPoint = null, bool isTouchInput = false)
Parameters
System.Windows.Point
point
The point. |
System.Windows.Point
transformedPoint
The transformed point. |
System.Boolean
isTouchInput
IsTouchInput. |
Properties
IsTouchInput
Gets or sets a value indicating whether the mouse input is promoted from touch input.
Declaration
public bool IsTouchInput { get; set; }
Property Value
System.Boolean
IsTouchInput. |
Point
Gets or sets the point.
Declaration
public Point Point { get; set; }
Property Value
System.Windows.Point
The point. |
TransformedPoint
Gets or sets the transformed point.
Declaration
public Point TransformedPoint { get; set; }
Property Value
System.Windows.Point
The transformed point. |