GeoBlazor Pro

dymaptic.GeoBlazor.Pro

dymaptic.GeoBlazor.Pro.Components

PrintViewModelTemplatesInfo Class

The service metadata that contains the format and layout information for the printout. ArcGIS Maps SDK for JavaScript

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

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

Constructors

PrintViewModelTemplatesInfo() Constructor

Parameterless constructor for use as a Razor Component.

public PrintViewModelTemplatesInfo();

PrintViewModelTemplatesInfo(PrintViewModelTemplatesInfoFormat, PrintViewModelTemplatesInfoLayout) Constructor

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

public PrintViewModelTemplatesInfo(dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoFormat? format=null, dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoLayout? layout=null);

Parameters

format PrintViewModelTemplatesInfoFormat

layout PrintViewModelTemplatesInfoLayout

Properties

PrintViewModelTemplatesInfo.Format Property

public dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoFormat? Format { get; set; }

Property Value

PrintViewModelTemplatesInfoFormat

PrintViewModelTemplatesInfo.Layout Property

public dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoLayout? Layout { get; set; }

Property Value

PrintViewModelTemplatesInfoLayout

Methods

PrintViewModelTemplatesInfo.GetFormat() Method

Asynchronously retrieve the current value of the Format property.

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoFormat?> GetFormat();

Returns

System.Threading.Tasks.Task<PrintViewModelTemplatesInfoFormat>

PrintViewModelTemplatesInfo.GetLayout() Method

Asynchronously retrieve the current value of the Layout property.

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoLayout?> GetLayout();

Returns

System.Threading.Tasks.Task<PrintViewModelTemplatesInfoLayout>

PrintViewModelTemplatesInfo.SetFormat(PrintViewModelTemplatesInfoFormat) Method

Asynchronously set the value of the Format property after render.

public System.Threading.Tasks.Task SetFormat(dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoFormat? value);

Parameters

value PrintViewModelTemplatesInfoFormat

The value to set.

Returns

System.Threading.Tasks.Task

PrintViewModelTemplatesInfo.SetLayout(PrintViewModelTemplatesInfoLayout) Method

Asynchronously set the value of the Layout property after render.

public System.Threading.Tasks.Task SetLayout(dymaptic.GeoBlazor.Pro.Components.PrintViewModelTemplatesInfoLayout? value);

Parameters

value PrintViewModelTemplatesInfoLayout

The value to set.

Returns

System.Threading.Tasks.Task

PrintViewModelTemplatesInfo.ValidateRequiredGeneratedChildren() Method

Validates source-generated child components.

public override void ValidateRequiredGeneratedChildren();

Implements ValidateRequiredGeneratedChildren()