dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

FeaturesViewModelScreenPoint Class

An object representing a point on the screen.
ArcGIS Maps SDK for JavaScript

public class FeaturesViewModelScreenPoint : dymaptic.GeoBlazor.Core.Components.MapComponent

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 FeaturesViewModelScreenPoint

Constructors

FeaturesViewModelScreenPoint() Constructor

Parameterless constructor for use as a Razor Component.

public FeaturesViewModelScreenPoint();

FeaturesViewModelScreenPoint(Nullable, Nullable) Constructor

Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.

public FeaturesViewModelScreenPoint(System.Nullable<double> x=null, System.Nullable<double> y=null);

Parameters

x System.Nullable<System.Double>

y System.Nullable<System.Double>

Properties

FeaturesViewModelScreenPoint.X Property

public System.Nullable<double> X { get; set; }

Property Value

System.Nullable<System.Double>

FeaturesViewModelScreenPoint.Y Property

public System.Nullable<double> Y { get; set; }

Property Value

System.Nullable<System.Double>

Methods

FeaturesViewModelScreenPoint.GetX() Method

Asynchronously retrieve the current value of the X property.

public System.Threading.Tasks.Task<System.Nullable<double>> GetX();

Returns

System.Threading.Tasks.Task<System.Nullable<System.Double>>

FeaturesViewModelScreenPoint.GetY() Method

Asynchronously retrieve the current value of the Y property.

public System.Threading.Tasks.Task<System.Nullable<double>> GetY();

Returns

System.Threading.Tasks.Task<System.Nullable<System.Double>>

FeaturesViewModelScreenPoint.SetX(Nullable) Method

Asynchronously set the value of the X property after render.

public System.Threading.Tasks.Task SetX(System.Nullable<double> value);

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task

FeaturesViewModelScreenPoint.SetY(Nullable) Method

Asynchronously set the value of the Y property after render.

public System.Threading.Tasks.Task SetY(System.Nullable<double> value);

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task