FlexGrid for WinForms
CellChanged Event



Fires after the contents of a cell have changed.
Syntax
'Declaration
 
<C1DescriptionAttribute("Fires after the contents of a cell have changed.")>
Public Event CellChanged As RowColEventHandler
'Usage
 
Dim instance As C1FlexGridBase
Dim handler As RowColEventHandler
 
AddHandler instance.CellChanged, handler
[C1Description("Fires after the contents of a cell have changed.")]
public event RowColEventHandler CellChanged
[C1Description("Fires after the contents of a cell have changed.")]
public:
event RowColEventHandler^ CellChanged
Remarks

This event allows you to perform processing whenever the contents of a cell change, regardless of how they were changed (for example, a user typed data into the cell, data got loaded from a database, or data was assigned to the grid through code).

This event can be used to provide conditional formatting and dynamic data summaries, which get updated automatically whenever the data changes.

This event fires in bound and unbound modes. In some bound more scenarios, the data source object may inform the grid that some data in the current row changed, without specifying which column changed. In this case, the Col parameter will be set to -1. Event handlers should be prepared to handle this situation without throwing exceptions.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

C1FlexGridBase Class
C1FlexGridBase Members

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Send Feedback