Skip to main content Link Menu Expand (external link) Document Search Copy Copied

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Widgets

BreakPoint Class

Defines the dimensions of the View at which to dock the popup. Set to false to disable docking at a breakpoint.
DefaultValue: true

public class BreakPoint

Inheritance System.Object 🡒 BreakPoint

Constructors

BreakPoint(bool) Constructor

Constructor for building a breakpoint with default max width and height.

public BreakPoint(bool value);

Parameters

value System.Boolean

Determines if the breakpoint is on or off.

BreakPoint(Nullable, Nullable) Constructor

Constructor for building a breakpoint with specified max width and/or height.

public BreakPoint(System.Nullable<double> width=null, System.Nullable<double> height=null);

Parameters

width System.Nullable<System.Double>

The maximum width of the View at which the popup will be set to dockEnabled automatically.
DefaultValue: 544

height System.Nullable<System.Double>

The maximum height of the View at which the popup will be set to dockEnabled automatically.
DefaultValue: 544

Properties

BreakPoint.BoolValue Property

Determines if the breakpoint is on or off.

public System.Nullable<bool> BoolValue { get; set; }

Property Value

System.Nullable<System.Boolean>

BreakPoint.Height Property

The maximum height of the View at which the popup will be set to dockEnabled automatically.
DefaultValue: 544

public System.Nullable<double> Height { get; set; }

Property Value

System.Nullable<System.Double>

BreakPoint.Width Property

The maximum width of the View at which the popup will be set to dockEnabled automatically.
DefaultValue: 544

public System.Nullable<double> Width { get; set; }

Property Value

System.Nullable<System.Double>