alexa
menu

MAUI Toolkit

  • User Guide
  • Demos
  • Support

    Show / Hide Table of Contents

    Class GridSplitterPaneExpandedEventArgs

    Provides data for the Expanded event.

    Inheritance
    System.Object
    GridSplitterPaneExpandedEventArgs
    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved