dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
ClusterTitle Class
Describes the schema of the ClusterTitle element.
ArcGIS Maps SDK for JavaScript
public class ClusterTitle : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 ClusterTitle
Constructors
ClusterTitle() Constructor
Parameterless constructor for use as a Razor Component.
public ClusterTitle();
ClusterTitle(Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public ClusterTitle(System.Nullable<bool> showCount=null);
Parameters
showCount
System.Nullable<System.Boolean>
Properties
ClusterTitle.ShowCount Property
public System.Nullable<bool> ShowCount { get; set; }
Property Value
System.Nullable<System.Boolean>
Methods
ClusterTitle.GetShowCount() Method
Asynchronously retrieve the current value of the ShowCount property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetShowCount();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
ClusterTitle.SetShowCount(Nullable) Method
Asynchronously set the value of the ShowCount property after render.
public System.Threading.Tasks.Task SetShowCount(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.