Click or drag to resize
ModifyCellEventArgs Class
Supplies data for the ModifyCell 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 ModifyCellEventArgs : CellEventArgs

The ModifyCellEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodModifyCellEventArgs
Initializes a ModifyCellEventArgs object for a given cell.
Top
Properties
  NameDescription
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 ModifyCell event handler, as well as to any delegates attached to the ModifyCell event.
The ModifyCell event is invoked when the user changes text in the current cell. This event is invoked only from cells that have an active state, such as edit controls or combobox controls where the cell content will later be transferred to the grid when the cell is left. Other types of controls do not invoke ModifyCell, such as check boxes and radio buttons. These controls immediately change the cell contents in the grid and have no active state. For example, when a user clicks on the check button in the check box, the check box triggers a ClickedButtonRowCol event and then calls SetStyleRange(Range, Style).
See Also