Class ExpandedEventArgs
Inheritance
System.Object
ExpandedEventArgs
Namespace: Syncfusion.Blazor.Layouts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExpandedEventArgs : Object
Constructors
ExpandedEventArgs()
Declaration
public ExpandedEventArgs()
Properties
Element
Gets the root element of the SfSplitter component.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM | The DOM element representing the root element of splitter. |
Event
Gets the original event arguments when you trigger the event.
Declaration
public EventArgs Event { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs | The original event arguments for the event that was triggered. |
Index
Gets an array of indices representing the order of expaned panes.
Declaration
public int[] Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32[] | Accepts an array of integer value. |
Name
Gets the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Pane
Gets the pane elements.
Declaration
public List<DOM> Pane { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DOM> | A list of DOM elements representing the panes of the Splitter. |
PaneSizes
Gets an array of pane size when it resizes.
Declaration
public double[] PaneSizes { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] | Accepts an array of double value that representing the size of panes. |
Separator
Gets the corresponding split-bar element.
Declaration
public DOM Separator { get; set; }
Property Value
Type | Description |
---|---|
DOM | The DOM element representing the corresponding split-bar for the Splitter. |