dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
BookmarkOptionsScreenshotSettingsArea Class
Used to take a screenshot of a subregion of the view.
ArcGIS Maps SDK for JavaScript
public class BookmarkOptionsScreenshotSettingsArea : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 BookmarkOptionsScreenshotSettingsArea
Constructors
BookmarkOptionsScreenshotSettingsArea() Constructor
Parameterless constructor for use as a Razor Component.
public BookmarkOptionsScreenshotSettingsArea();
BookmarkOptionsScreenshotSettingsArea(Nullable, Nullable, Nullable, Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public BookmarkOptionsScreenshotSettingsArea(System.Nullable<int> height=null, System.Nullable<int> width=null, System.Nullable<double> x=null, System.Nullable<double> y=null);
Parameters
height
System.Nullable<System.Int32>
The height of the screenshot area.
ArcGIS Maps SDK for JavaScript
width
System.Nullable<System.Int32>
The width of the screenshot area.
ArcGIS Maps SDK for JavaScript
x
System.Nullable<System.Double>
The x value of the screenshot area.
ArcGIS Maps SDK for JavaScript
y
System.Nullable<System.Double>
The y value of the screenshot area.
ArcGIS Maps SDK for JavaScript
Properties
BookmarkOptionsScreenshotSettingsArea.Height Property
The height of the screenshot area.
ArcGIS Maps SDK for JavaScript
public System.Nullable<int> Height { get; set; }
Property Value
BookmarkOptionsScreenshotSettingsArea.Width Property
The width of the screenshot area.
ArcGIS Maps SDK for JavaScript
public System.Nullable<int> Width { get; set; }
Property Value
BookmarkOptionsScreenshotSettingsArea.X Property
The x value of the screenshot area.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> X { get; set; }
Property Value
System.Nullable<System.Double>
BookmarkOptionsScreenshotSettingsArea.Y Property
The y value of the screenshot area.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> Y { get; set; }
Property Value
System.Nullable<System.Double>
Methods
BookmarkOptionsScreenshotSettingsArea.GetHeight() Method
Asynchronously retrieve the current value of the Height property.
public System.Threading.Tasks.Task<System.Nullable<int>> GetHeight();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Int32>>
BookmarkOptionsScreenshotSettingsArea.GetWidth() Method
Asynchronously retrieve the current value of the Width property.
public System.Threading.Tasks.Task<System.Nullable<int>> GetWidth();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Int32>>
BookmarkOptionsScreenshotSettingsArea.GetX() Method
Asynchronously retrieve the current value of the X property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetX();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
BookmarkOptionsScreenshotSettingsArea.GetY() Method
Asynchronously retrieve the current value of the Y property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetY();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
BookmarkOptionsScreenshotSettingsArea.SetHeight(Nullable) Method
Asynchronously set the value of the Height property after render.
public System.Threading.Tasks.Task SetHeight(System.Nullable<int> value);
Parameters
value
System.Nullable<System.Int32>
The value to set.
Returns
BookmarkOptionsScreenshotSettingsArea.SetWidth(Nullable) Method
Asynchronously set the value of the Width property after render.
public System.Threading.Tasks.Task SetWidth(System.Nullable<int> value);
Parameters
value
System.Nullable<System.Int32>
The value to set.
Returns
BookmarkOptionsScreenshotSettingsArea.SetX(Nullable) Method
Asynchronously set the value of the X property after render.
public System.Threading.Tasks.Task SetX(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.
Returns
BookmarkOptionsScreenshotSettingsArea.SetY(Nullable) Method
Asynchronously set the value of the Y property after render.
public System.Threading.Tasks.Task SetY(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.