dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

WebsceneApplicationProperties Class

Represents configuration of application and UI elements.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

WebsceneApplicationProperties() Constructor

Parameterless constructor for use as a Razor Component.

public WebsceneApplicationProperties();

WebsceneApplicationProperties(Viewing) Constructor

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

public WebsceneApplicationProperties(dymaptic.GeoBlazor.Core.Components.Viewing? viewing=null);

Parameters

viewing Viewing

View-specific properties of application and UI elements.
ArcGIS Maps SDK for JavaScript

Properties

WebsceneApplicationProperties.Viewing Property

View-specific properties of application and UI elements.
ArcGIS Maps SDK for JavaScript

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

Property Value

Viewing

Methods

WebsceneApplicationProperties.GetViewing() Method

Asynchronously retrieve the current value of the Viewing property.

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

Returns

System.Threading.Tasks.Task<Viewing>

WebsceneApplicationProperties.SetViewing(Viewing) Method

Asynchronously set the value of the Viewing property after render.

public System.Threading.Tasks.Task SetViewing(dymaptic.GeoBlazor.Core.Components.Viewing? value);

Parameters

value Viewing

The value to set.

Returns

System.Threading.Tasks.Task

WebsceneApplicationProperties.ValidateRequiredGeneratedChildren() Method

Validates source-generated child components.

public override void ValidateRequiredGeneratedChildren();

Implements ValidateRequiredGeneratedChildren()