dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
SliderVisibleElements Class
The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript
public class SliderVisibleElements : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 SliderVisibleElements
Constructors
SliderVisibleElements() Constructor
Parameterless constructor for use as a Razor Component.
public SliderVisibleElements();
SliderVisibleElements(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 SliderVisibleElements(System.Nullable<bool> labels=null, System.Nullable<bool> rangeLabels=null);
Parameters
labels
System.Nullable<System.Boolean>
Indicates whether to display labels for slider thumbs.
ArcGIS Maps SDK for JavaScript
rangeLabels
System.Nullable<System.Boolean>
Indicates whether to display min or max range values on the slider.
ArcGIS Maps SDK for JavaScript
Properties
SliderVisibleElements.Labels Property
Indicates whether to display labels for slider thumbs. By default, labels display input thumb values as floating point values with a precision of two digits. The format of labels can be customized via the labelFormatFunction.
Default value: false
public System.Nullable<bool> Labels { get; set; }
Property Value
System.Nullable<System.Boolean>
SliderVisibleElements.RangeLabels Property
Indicates whether to display min or max range values on the slider. The format of labels can be customized via the labelFormatFunction.
Default value: false
public System.Nullable<bool> RangeLabels { get; set; }
Property Value
System.Nullable<System.Boolean>
Methods
SliderVisibleElements.GetLabels() Method
Asynchronously retrieve the current value of the Labels property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetLabels();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
SliderVisibleElements.GetRangeLabels() Method
Asynchronously retrieve the current value of the RangeLabels property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetRangeLabels();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
SliderVisibleElements.SetLabels(Nullable) Method
Asynchronously set the value of the Labels property after render.
public System.Threading.Tasks.Task SetLabels(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
SliderVisibleElements.SetRangeLabels(Nullable) Method
Asynchronously set the value of the RangeLabels property after render.
public System.Threading.Tasks.Task SetRangeLabels(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.