Skip to content

SizeChangedMapViewEventArgs

Namespace: ThinkGeo.UI.Blazor

Provides data for MapView.OnSizeChanged event.

public class SizeChangedMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsSizeChangedMapViewEventArgs

Properties

Width

Gets the width of map.

public double Width { get; }

Property Value

Double

Height

Gets the height of map.

public double Height { get; }

Property Value

Double

PreviousWidth

Gets the previous width of map.

public double PreviousWidth { get; }

Property Value

Double

PreviousHeight

Gets previous height of map.

public double PreviousHeight { get; }

Property Value

Double

Constructors

SizeChangedMapViewEventArgs(Double, Double, Double, Double)

Initializes a new instance of SizeChangedMapViewEventArgs.

public SizeChangedMapViewEventArgs(double width, double height, double previousWidth, double previousHeight)

Parameters

width Double
The new width of map.

height Double
The new height of map.

previousWidth Double
The previous width of map.

previousHeight Double
The previous height of map.