dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Popups
PopupDockOptionsBreakpoint Class
public class PopupDockOptionsBreakpoint : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 PopupDockOptionsBreakpoint
Constructors
PopupDockOptionsBreakpoint() Constructor
Parameterless constructor for use as a Razor Component.
public PopupDockOptionsBreakpoint();
PopupDockOptionsBreakpoint(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 PopupDockOptionsBreakpoint(System.Nullable<int> height=null, System.Nullable<int> width=null);
Parameters
height
System.Nullable<System.Int32>
The maximum height of the View at which the popup will be set to dockEnabled automatically.
default 544
ArcGIS Maps SDK for JavaScript
width
System.Nullable<System.Int32>
The maximum width of the View at which the popup will be set to dockEnabled automatically.
default 544
ArcGIS Maps SDK for JavaScript
Properties
PopupDockOptionsBreakpoint.Height Property
The maximum height of the View at which the popup will be set to dockEnabled automatically.
default 544
ArcGIS Maps SDK for JavaScript
public System.Nullable<int> Height { get; set; }
Property Value
PopupDockOptionsBreakpoint.Width Property
The maximum width of the View at which the popup will be set to dockEnabled automatically.
default 544
ArcGIS Maps SDK for JavaScript
public System.Nullable<int> Width { get; set; }
Property Value
Methods
PopupDockOptionsBreakpoint.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>>
PopupDockOptionsBreakpoint.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>>
PopupDockOptionsBreakpoint.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
PopupDockOptionsBreakpoint.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.