Class PointerData

Represents an input device.

Inheritance
System.Object
PointerData
Namespace: PSPDFKit.UI
Assembly: PSPDFKit.dll
Syntax
public sealed class PointerData

Properties

IsPrimary

Indicates whether or not the pointer device is the primary pointer.

Declaration
public bool IsPrimary { get; set; }
Property Value
Type Description
System.Boolean

PointerId

Unique identifier of the pointer.

Declaration
public int PointerId { get; set; }
Property Value
Type Description
System.Int32

PointerType

Indicates the type of pointer device that was used. Values can be "mouse", "pen", or "touch".

Declaration
public string PointerType { get; set; }
Property Value
Type Description
System.String

Pressure

The pressure of the pointer input. Ranged between 0 and 1.

Declaration
public double Pressure { get; set; }
Property Value
Type Description
System.Double