BCGControlBar Library for .NET
ItemDataChanged Event




Raised when GridDataItem.ItemData has changes.
Syntax
'Declaration
 
Public Event ItemDataChanged As DataItemChangeEventHandler
'Usage
 
Dim instance As GridData
Dim handler As DataItemChangeEventHandler
 
AddHandler instance.ItemDataChanged, handler
public event DataItemChangeEventHandler ItemDataChanged
public: __event DataItemChangeEventHandler* ItemDataChanged
public:
event DataItemChangeEventHandler^ ItemDataChanged
Event Data

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

PropertyDescription
Cancel (Inherited from System.ComponentModel.CancelEventArgs) 
Column Grid column of item data.
ContinueEdit Gets or sets the value that specifies whether the grid should continue editing of cell content.
DataItem Gets the grid item whose data is about to be changed.
NewValue Gets or sets the new value for the grid data item.
PassExceptionUp Gets or sets the value that indicates whether to handle a possible exception in place, or throw it up.
Row Gets the row of data item.
Remarks
You may want to subscribe to this event to be notified about data changes - it includes any changes made by external code through direct access to GridDataItem.ItemData.
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

GridData Class
GridData Members

Send Feedback