dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
SearchTableField Class
Represents the field of a table to use for search.
ArcGIS Maps SDK for JavaScript
public class SearchTableField : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 SearchTableField
Constructors
SearchTableField() Constructor
Parameterless constructor for use as a Razor Component.
public SearchTableField();
SearchTableField(Nullable, string) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public SearchTableField(System.Nullable<bool> exactMatch=null, string? name=null);
Parameters
exactMatch
System.Nullable<System.Boolean>
Whether or not the field is an exact match.
ArcGIS Maps SDK for JavaScript
name
System.String
The name of the field.
ArcGIS Maps SDK for JavaScript
Properties
SearchTableField.ExactMatch Property
Whether or not the field is an exact match.
ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> ExactMatch { get; set; }
Property Value
System.Nullable<System.Boolean>
SearchTableField.Name Property
The name of the field.
ArcGIS Maps SDK for JavaScript
public string? Name { get; set; }
Property Value
Methods
SearchTableField.GetExactMatch() Method
Asynchronously retrieve the current value of the ExactMatch property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetExactMatch();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>
SearchTableField.GetName() Method
Asynchronously retrieve the current value of the Name property.
public System.Threading.Tasks.Task<string?> GetName();
Returns
System.Threading.Tasks.Task<System.String>
SearchTableField.SetExactMatch(Nullable) Method
Asynchronously set the value of the ExactMatch property after render.
public System.Threading.Tasks.Task SetExactMatch(System.Nullable<bool> value);
Parameters
value
System.Nullable<System.Boolean>
The value to set.
Returns
SearchTableField.SetName(string) Method
Asynchronously set the value of the Name property after render.
public System.Threading.Tasks.Task SetName(string? value);
Parameters
value
System.String
The value to set.