Click or drag to resize
DeleteCellEventArgs Class
Supplies data for the DeleteCell event of the GridControl class.
Inheritance Hierarchy

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public class DeleteCellEventArgs : CellEventArgs

The DeleteCellEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodDeleteCellEventArgs
Initializes a new DeleteCellEventArgs object for a given cell.
Top
Properties
  NameDescription
Public propertyCanDelete
Gets or sets a value to show that the current inactive cell's data cannot be deleted.
Public propertyCol
Gets or sets the column index of the cell.
(Inherited from CellEventArgs.)
Public propertyRow
Gets or sets the row index of the cell.
(Inherited from CellEventArgs.)
Top
Remarks
These event arguments are supplied to any overridden DeleteCell event handler, as well as to any delegates attached to the DeleteCell event.
The DeleteCell event is invoked when the user presses DELETE on the inactive current cell. This class supplies the row and column coordinates of that cell, as well as allowing the delete operation to be bypassed.
See Also