dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

BasemapToggleVisibleElements Class

The visible elements that are displayed within the widget.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

BasemapToggleVisibleElements() Constructor

Parameterless constructor for use as a Razor Component.

public BasemapToggleVisibleElements();

BasemapToggleVisibleElements(Nullable) Constructor

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

public BasemapToggleVisibleElements(System.Nullable<bool> title=null);

Parameters

title System.Nullable<System.Boolean>

Indicates whether to the title will be displayed.
ArcGIS Maps SDK for JavaScript

Properties

BasemapToggleVisibleElements.Title Property

Indicates whether to the title will be displayed.
ArcGIS Maps SDK for JavaScript

public System.Nullable<bool> Title { get; set; }

Property Value

System.Nullable<System.Boolean>

Methods

BasemapToggleVisibleElements.GetTitle() Method

Asynchronously retrieve the current value of the Title property.

public System.Threading.Tasks.Task<System.Nullable<bool>> GetTitle();

Returns

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

BasemapToggleVisibleElements.SetTitle(Nullable) Method

Asynchronously set the value of the Title property after render.

public System.Threading.Tasks.Task SetTitle(System.Nullable<bool> value);

Parameters

value System.Nullable<System.Boolean>

The value to set.

Returns

System.Threading.Tasks.Task