dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

RelationshipLabels Class

Describes the schema of the RelationshipLabels element.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

RelationshipLabels() Constructor

Parameterless constructor for use as a Razor Component.

public RelationshipLabels();

RelationshipLabels(string, string, string, string) Constructor

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

public RelationshipLabels(string? bottom=null, string? left=null, string? right=null, string? top=null);

Parameters

bottom System.String

The label corresponding with the bottom corner of the legend if the focus is set to HH.
ArcGIS Maps SDK for JavaScript

left System.String

The label corresponding with the left corner of the legend (if the focus is set to HH).
ArcGIS Maps SDK for JavaScript

right System.String

The label corresponding with the right corner of the legend (if the focus is set to HH).
ArcGIS Maps SDK for JavaScript

top System.String

The label corresponding with the top corner of the legend if the focus is set to HH.
ArcGIS Maps SDK for JavaScript

Properties

RelationshipLabels.Bottom Property

The label corresponding with the bottom corner of the legend if the focus is set to HH.
ArcGIS Maps SDK for JavaScript

public string? Bottom { get; set; }

Property Value

System.String

RelationshipLabels.Left Property

The label corresponding with the left corner of the legend (if the focus is set to HH).
ArcGIS Maps SDK for JavaScript

public string? Left { get; set; }

Property Value

System.String

RelationshipLabels.Right Property

The label corresponding with the right corner of the legend (if the focus is set to HH).
ArcGIS Maps SDK for JavaScript

public string? Right { get; set; }

Property Value

System.String

RelationshipLabels.Top Property

The label corresponding with the top corner of the legend if the focus is set to HH.
ArcGIS Maps SDK for JavaScript

public string? Top { get; set; }

Property Value

System.String

Methods

RelationshipLabels.GetBottom() Method

Asynchronously retrieve the current value of the Bottom property.

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

Returns

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

RelationshipLabels.GetLeft() Method

Asynchronously retrieve the current value of the Left property.

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

Returns

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

RelationshipLabels.GetRight() Method

Asynchronously retrieve the current value of the Right property.

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

Returns

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

RelationshipLabels.GetTop() Method

Asynchronously retrieve the current value of the Top property.

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

Returns

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

RelationshipLabels.SetBottom(string) Method

Asynchronously set the value of the Bottom property after render.

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

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

RelationshipLabels.SetLeft(string) Method

Asynchronously set the value of the Left property after render.

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

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

RelationshipLabels.SetRight(string) Method

Asynchronously set the value of the Right property after render.

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

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

RelationshipLabels.SetTop(string) Method

Asynchronously set the value of the Top property after render.

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

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task