PointerPoint Struct
Definition
Provides basic properties for the input pointer associated with a single mouse, pen/stylus, or touch contact.
public struct PointerPoint
Constructors
| Name | Description |
|---|---|
| PointerPoint | No summary available. |
PointerPoint Constructor
public PointerPoint(Avalonia.Input.IPointer pointer, Avalonia.Point position, Avalonia.Input.PointerPointProperties properties)
Parameters
pointer Avalonia.Input.IPointer
position Avalonia.Point
properties Avalonia.Input.PointerPointProperties
Methods
| Name | Description |
|---|---|
| Equals (2 overloads) | No summary available. |
| GetHashCode | No summary available. |
| ToString | No summary available. |
Equals overloads
Equals Method
public bool Equals(Avalonia.Input.PointerPoint other)
Parameters
other Avalonia.Input.PointerPoint
Returns
bool
Equals Method
public bool Equals(object obj)
Parameters
obj object
Returns
bool
GetHashCode Method
public int GetHashCode()
Returns
int
ToString Method
public string ToString()
Returns
string
Properties
| Name | Description |
|---|---|
| Pointer | Gets specific pointer generated by input device. |
| Position | Gets the location of the pointer input in client coordinates. |
| Properties | Gets extended information about the input pointer. |
Pointer Property
Gets specific pointer generated by input device.
public Avalonia.Input.IPointer Pointer { get; set; }
Position Property
Gets the location of the pointer input in client coordinates.
public Avalonia.Point Position { get; set; }
Properties Property
Gets extended information about the input pointer.
public Avalonia.Input.PointerPointProperties Properties { get; set; }