dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

SearchTable Class

Represents a table to be included in search.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

SearchTable() Constructor

Parameterless constructor for use as a Razor Component.

public SearchTable();

SearchTable(SearchTableField, string) Constructor

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

public SearchTable(dymaptic.GeoBlazor.Core.Components.SearchTableField? field=null, string? searchTableId=null);

Parameters

field SearchTableField

The field to use for search.
ArcGIS Maps SDK for JavaScript

searchTableId System.String

The id of the table.
ArcGIS Maps SDK for JavaScript

Properties

SearchTable.Field Property

The field to use for search.
ArcGIS Maps SDK for JavaScript

public dymaptic.GeoBlazor.Core.Components.SearchTableField? Field { get; set; }

Property Value

SearchTableField

SearchTable.SearchTableId Property

The id of the table.
ArcGIS Maps SDK for JavaScript

public string? SearchTableId { get; set; }

Property Value

System.String

Methods

SearchTable.GetField() Method

Asynchronously retrieve the current value of the Field property.

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.SearchTableField?> GetField();

Returns

System.Threading.Tasks.Task<SearchTableField>

SearchTable.GetSearchTableId() Method

Asynchronously retrieve the current value of the SearchTableId property.

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

Returns

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

SearchTable.SetField(SearchTableField) Method

Asynchronously set the value of the Field property after render.

public System.Threading.Tasks.Task SetField(dymaptic.GeoBlazor.Core.Components.SearchTableField? value);

Parameters

value SearchTableField

The value to set.

Returns

System.Threading.Tasks.Task

SearchTable.SetSearchTableId(string) Method

Asynchronously set the value of the SearchTableId property after render.

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

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

SearchTable.ValidateRequiredGeneratedChildren() Method

Validates source-generated child components.

public override void ValidateRequiredGeneratedChildren();

Implements ValidateRequiredGeneratedChildren()