Class SankeySizeChangedEventArgs
Represents the event arguments for the SfSankey component SizeChanged event.
Inheritance
System.Object
SankeySizeChangedEventArgs
Namespace: Syncfusion.Blazor.Sankey
Assembly: Syncfusion.Blazor.dll
Syntax
public class SankeySizeChangedEventArgs : Object
Constructors
SankeySizeChangedEventArgs(Size, Size)
Declaration
public SankeySizeChangedEventArgs(Size availableSize, Size previousSize)
Parameters
Type | Name | Description |
---|---|---|
Size | availableSize | |
Size | previousSize |
Properties
CurrentSize
Gets the current size of the SfSankey when the resize event is triggered.
Declaration
public Size CurrentSize { get; }
Property Value
Type | Description |
---|---|
Size | The size object representing the current size of the SfSankey. |
Remarks
This is read-only property.
PreviousSize
Gets the previous size of the SfSankey before resize event is triggered.
Declaration
public Size PreviousSize { get; }
Property Value
Type | Description |
---|---|
Size | The size object representing the previous size of the SfSankey. |
Remarks
This is read-only property.