dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

DotDensityTitle Class

Describes the schema of the DotDensityTitle element.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

DotDensityTitle() Constructor

Parameterless constructor for use as a Razor Component.

public DotDensityTitle();

DotDensityTitle(string, Nullable) Constructor

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

public DotDensityTitle(string? unit=null, System.Nullable<double> value=null);

Parameters

unit System.String

value System.Nullable<System.Double>

Properties

DotDensityTitle.Unit Property

public string? Unit { get; set; }

Property Value

System.String

DotDensityTitle.Value Property

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

Property Value

System.Nullable<System.Double>

Methods

DotDensityTitle.GetUnit() Method

Asynchronously retrieve the current value of the Unit property.

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

Returns

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

DotDensityTitle.GetValue() Method

Asynchronously retrieve the current value of the Value property.

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

Returns

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

DotDensityTitle.SetUnit(string) Method

Asynchronously set the value of the Unit property after render.

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

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

DotDensityTitle.SetValue(Nullable) Method

Asynchronously set the value of the Value property after render.

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

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task