FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGrid Class / GridChanged Event

In This Topic
    GridChanged Event (C1FlexGrid)
    In This Topic
    Fires when the grid or its contents change.
    Syntax
    'Declaration
     
    
    Public Event GridChanged As GridChangedEventHandler
    public event GridChangedEventHandler GridChanged
    Event Data

    The event handler receives an argument of type GridChangedEventArgs containing data related to this event. The following GridChangedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the range's first column index.  
    Gets the range's last column index.  
    The type of action that caused the event to fire.  
    Gets the range's first row index.  
    Gets the range's last row index.  
    Remarks

    This is a general event that fires before more specific events. For example, if the user drags a column with the mouse, the control fires the C1FlexGridBase.BeforeDragColumn, C1FlexGridBase.GridChanged, and C1FlexGridBase.AfterDragColumn events.

    The GridChanged event allows you to create a centralized handler for all types of grid events. It does not provide detailed arguments for every event, nor the option of canceling user actions.

    See Also