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

The ClickedButtonRowColEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodClickedButtonRowColEventArgs
Initializes a new ClickedButtonRowColEventArgs 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 ClickedButtonRowCol event handler, as well as to any delegates attached to the ClickedButtonRowCol event. The ClickedButtonRowCol event is invoked when a button control is pushed in a grid cell. These event arguments supply the row and column coordinates of the grid cell whose button was clicked.
See Also