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

The EndEditingEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodEndEditingEventArgs
Initializes a new EndEditingEventArgs object for a given cell.
Top
Properties
  NameDescription
Public propertyCol
Gets or sets the column index of the cell.
(Inherited from CellEventArgs.)
Public propertyIsValid
Gets or sets a value indicating whether or not the contents of the current cell are valid.
Public propertyRow
Gets or sets the row index of the cell.
(Inherited from CellEventArgs.)
Public propertyValue
Gets or sets the contents of the current cell.
Top
Remarks
These event arguments are supplied to any overridden EndEditing event handler, as well as to any delegates attached to the EndEditing event. The EndEditing event is invoked when the user confirms the contents of the current cell. This class communicates the row and column coordinates of the cell. The user is also given the ability to specify whether or not the contents of the cell are valid. The editing operation ends only if the cell contents are identified as valid.
See Also