Class GridSplitterPaneExpandedEventArgs
Provides data for the Expanded event.
Inheritance
Namespace: Syncfusion.Maui.Toolkit.GridSplitter
Assembly: Syncfusion.Maui.Toolkit.dll
Syntax
public class GridSplitterPaneExpandedEventArgs : EventArgs
Remarks
This event argument is raised after a pane has been successfully expanded (shown after being collapsed). The event includes the index of the expanded pane and a reference to the pane itself. This event marks the completion of an expand operation and can be used to trigger dependent UI updates.
Constructors
GridSplitterPaneExpandedEventArgs(Int32[], SplitterPane[])
Initializes a new instance of the GridSplitterPaneExpandedEventArgs class.
Declaration
public GridSplitterPaneExpandedEventArgs(int[] index, SplitterPane[] pane)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32[] | index | The zero-based indexes of the panes involved in the expand operation, including the expanded pane and its adjacent pane. |
| SplitterPane[] | pane | The SplitterPane instances involved in the expand operation, including the expanded pane and its adjacent pane. |
Properties
Indexes
Gets the zero-based indexes of the panes involved in the expand operation.
Declaration
public int[] Indexes { get; }
Property Value
| Type |
|---|
| System.Int32[] |
Remarks
These indexes correspond to the positions of the affected panes in the SplitterPanes collection, including the expanded pane and its adjacent pane.
Panes
Gets the SplitterPane instances involved in the expand operation.
Declaration
public SplitterPane[] Panes { get; }
Property Value
| Type |
|---|
| SplitterPane[] |
Remarks
Contains the affected panes, including the expanded pane and its adjacent pane.