dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

AuthoringInfoField1ClassBreakInfos Class

Describes the class breaks generated for this field.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

AuthoringInfoField1ClassBreakInfos() Constructor

Parameterless constructor for use as a Razor Component.

public AuthoringInfoField1ClassBreakInfos();

AuthoringInfoField1ClassBreakInfos(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 AuthoringInfoField1ClassBreakInfos(System.Nullable<double> maxValue=null, System.Nullable<double> minValue=null);

Parameters

maxValue System.Nullable<System.Double>

The maximum bound of values to visualize in the given field.
ArcGIS Maps SDK for JavaScript

minValue System.Nullable<System.Double>

The minimum bound of values to visualize in the given field.
ArcGIS Maps SDK for JavaScript

Properties

AuthoringInfoField1ClassBreakInfos.MaxValue Property

The maximum bound of values to visualize in the given field.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Double>

AuthoringInfoField1ClassBreakInfos.MinValue Property

The minimum bound of values to visualize in the given field.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Double>

Methods

AuthoringInfoField1ClassBreakInfos.GetMaxValue() Method

Asynchronously retrieve the current value of the MaxValue property.

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

Returns

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

AuthoringInfoField1ClassBreakInfos.GetMinValue() Method

Asynchronously retrieve the current value of the MinValue property.

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

Returns

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

AuthoringInfoField1ClassBreakInfos.SetMaxValue(Nullable) Method

Asynchronously set the value of the MaxValue property after render.

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

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task

AuthoringInfoField1ClassBreakInfos.SetMinValue(Nullable) Method

Asynchronously set the value of the MinValue property after render.

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

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task