C1.Win.FlexGrid Namespace / C1FlexGridBase Class / GridChanged Event

GridChanged Event (C1FlexGridBase)
Fires when the grid or its contents change.
Syntax
'Declaration
 
Public Event GridChanged As GridChangedEventHandler
 
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 BeforeDragColumn, GridChanged, and 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