SizeChangedMapViewEventArgs¶
Namespace: ThinkGeo.UI.Blazor
Provides data for MapView.OnSizeChanged event.
public class SizeChangedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → SizeChangedMapViewEventArgs
Properties¶
Width¶
Gets the width of map.
public double Width { get; }
Property Value¶
Height¶
Gets the height of map.
public double Height { get; }
Property Value¶
PreviousWidth¶
Gets the previous width of map.
public double PreviousWidth { get; }
Property Value¶
PreviousHeight¶
Gets previous height of map.
public double PreviousHeight { get; }
Property Value¶
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.