dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
FeaturesViewModelFetchFeaturesScreenPoint Class
public class FeaturesViewModelFetchFeaturesScreenPoint : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 FeaturesViewModelFetchFeaturesScreenPoint
Constructors
FeaturesViewModelFetchFeaturesScreenPoint() Constructor
Parameterless constructor for use as a Razor Component.
public FeaturesViewModelFetchFeaturesScreenPoint();
FeaturesViewModelFetchFeaturesScreenPoint(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 FeaturesViewModelFetchFeaturesScreenPoint(System.Nullable<double> x=null, System.Nullable<double> y=null);
Parameters
x
System.Nullable<System.Double>
The x coordinate.
ArcGIS Maps SDK for JavaScript
y
System.Nullable<System.Double>
The y coordinate.
ArcGIS Maps SDK for JavaScript
Properties
FeaturesViewModelFetchFeaturesScreenPoint.X Property
The x coordinate.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> X { get; set; }
Property Value
System.Nullable<System.Double>
FeaturesViewModelFetchFeaturesScreenPoint.Y Property
The y coordinate.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> Y { get; set; }
Property Value
System.Nullable<System.Double>
Methods
FeaturesViewModelFetchFeaturesScreenPoint.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>>
FeaturesViewModelFetchFeaturesScreenPoint.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>>
FeaturesViewModelFetchFeaturesScreenPoint.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
FeaturesViewModelFetchFeaturesScreenPoint.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.