dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

RangeDomain Class

Range domains specify a valid minimum and maximum valid value that can be stored in numeric and date fields.
ArcGIS Maps SDK for JavaScript

public class RangeDomain : dymaptic.GeoBlazor.Core.Components.Domain

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 Domain 🡒 RangeDomain

Constructors

RangeDomain() Constructor

Parameterless constructor for use as a Razor Component.

public RangeDomain();

RangeDomain(string, string, string) Constructor

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

public RangeDomain(string? maxValue=null, string? minValue=null, string? name=null);

Parameters

maxValue System.String

The maximum valid value.
ArcGIS Maps SDK for JavaScript

minValue System.String

The minimum valid value.
ArcGIS Maps SDK for JavaScript

name System.String

The domain name.
ArcGIS Maps SDK for JavaScript

Properties

RangeDomain.MaxValue Property

The maximum valid value.
ArcGIS Maps SDK

public string? MaxValue { get; set; }

Property Value

System.String

RangeDomain.MinValue Property

The minimum valid value.
ArcGIS Maps SDK

public string? MinValue { get; set; }

Property Value

System.String

RangeDomain.Type Property

The domain type.

public override string Type { get; }

Property Value

System.String

Methods

RangeDomain.GetMaxValue() Method

Asynchronously retrieve the current value of the MaxValue property.

public System.Threading.Tasks.Task<string?> GetMaxValue();

Returns

System.Threading.Tasks.Task<System.String>

RangeDomain.GetMinValue() Method

Asynchronously retrieve the current value of the MinValue property.

public System.Threading.Tasks.Task<string?> GetMinValue();

Returns

System.Threading.Tasks.Task<System.String>

RangeDomain.SetMaxValue(string) Method

Asynchronously set the value of the MaxValue property after render.

public System.Threading.Tasks.Task SetMaxValue(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

RangeDomain.SetMinValue(string) Method

Asynchronously set the value of the MinValue property after render.

public System.Threading.Tasks.Task SetMinValue(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task