BCGControlBar Library for .NET
CellBeginEdit Event




Raised when a cell is about to be edited.
Syntax
'Declaration
 
Public Event CellBeginEdit As GridEditCellEventHandler
'Usage
 
Dim instance As GridControl
Dim handler As GridEditCellEventHandler
 
AddHandler instance.CellBeginEdit, handler
public event GridEditCellEventHandler CellBeginEdit
public: __event GridEditCellEventHandler* CellBeginEdit
public:
event GridEditCellEventHandler^ CellBeginEdit
Event Data

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

PropertyDescription
CancelEdit  
GridCell (Inherited from BCGSoft.Controls.Grid.CellEventArgs)Gets the Cell for which the event is raised.
Handled (Inherited from System.ComponentModel.HandledEventArgs) 
Remarks
Handle this event to customize cell editing. You can cancel editing by setting GridEditCellEventArgs.Cancel to true.
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

GridControl Class
GridControl Members

Send Feedback