Class ResizeEventArgs
Specifies the event arguments for the resize event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class ResizeEventArgs : MapsBaseEventArgs
Constructors
ResizeEventArgs()
Declaration
public ResizeEventArgs()
Properties
CurrentSize
Gets or sets the current size of the map after the resize event.
Declaration
public SizeF CurrentSize { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.SizeF | A System.Drawing.SizeF representing the map's new size. |
Remarks
The current size reflects the dimensions of the map post-resizing operation.
PreviousSize
Gets or sets the previous size of the map before the resize event.
Declaration
public SizeF PreviousSize { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.SizeF | A System.Drawing.SizeF representing the map's old size. |
Remarks
Use this property to understand the size change and handle any adjustments needed.