Skip to main content Link Menu Expand (external link) Document Search Copy Copied

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Events

ScreenPoint Class

The screen coordinates (or native mouse event) of the click on the view.

public class ScreenPoint :
System.IEquatable<dymaptic.GeoBlazor.Core.Events.ScreenPoint>

Inheritance System.Object 🡒 ScreenPoint

Implements System.IEquatable<ScreenPoint>

Constructors

ScreenPoint(double, double) Constructor

The screen coordinates (or native mouse event) of the click on the view.

public ScreenPoint(double X, double Y);

Parameters

X System.Double

The X coordinate.

Y System.Double

The Y coordinate.

Properties

ScreenPoint.X Property

The X coordinate.

public double X { get; set; }

Property Value

System.Double

ScreenPoint.Y Property

The Y coordinate.

public double Y { get; set; }

Property Value

System.Double