Class GridSplitterResizeStoppedEventArgs
Provides data for the ResizeStopped event.
Inheritance
Namespace: Syncfusion.Maui.Toolkit.GridSplitter
Assembly: Syncfusion.Maui.Toolkit.dll
Syntax
public class GridSplitterResizeStoppedEventArgs : EventArgs
Remarks
This event argument is raised when a user stops dragging a separator (pointer released or resize canceled). The event includes the index of the pane that was resized and a reference to the pane itself. This event marks the end of a resize gesture and can be used to commit final layout changes or trigger dependent updates.
Constructors
GridSplitterResizeStoppedEventArgs(Int32[], SplitterPane[])
Initializes a new instance of the GridSplitterResizeStoppedEventArgs class.
Declaration
public GridSplitterResizeStoppedEventArgs(int[] index, SplitterPane[] pane)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32[] | index | An array containing the zero-based indexes of the affected panes. The first value represents the primary pane that was resized, and the second value represents its adjacent pane. |
| SplitterPane[] | pane | An array containing the affected SplitterPane instances. The first item is the primary pane that was resized, and the second item is its adjacent pane. |
Properties
Indexes
Gets the zero-based indexes of the affected panes.
Declaration
public int[] Indexes { get; }
Property Value
| Type |
|---|
| System.Int32[] |
Remarks
The first index represents the primary pane that was resized, and the second index represents its adjacent pane in the SplitterPanes collection.
Panes
Gets the affected SplitterPane instances.
Declaration
public SplitterPane[] Panes { get; }
Property Value
| Type |
|---|
| SplitterPane[] |
Remarks
The first pane is the primary pane that was resized, and the second pane is its adjacent pane.