ComponentOne FlexGrid for WinForms
AfterDataRefresh Event

C1.Win.C1FlexGrid Namespace > C1FlexGridBase Class : AfterDataRefresh Event
Fires after any data source change notifications.
Syntax
'Declaration
 
Public Event AfterDataRefresh As ListChangedEventHandler
public event ListChangedEventHandler AfterDataRefresh
Event Data

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

PropertyDescription
 
 
 
 
Remarks

When the grid is used in bound mode, any changes to the data source cause the grid to fire the AfterDataRefresh event. This event is the ideal place to put code that updates the grid with data-dependent elements such as subtotals and outline trees.

Note: The System.ComponentModel.ListChangedEventHandler delegate is defined in the System.ComponentModel namespace.

See Also