Class GridCellPushButtonClickEventArgs
Provides data about the PushButtonClick event when the user clicks a pushbutton cell.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridCellPushButtonClickEventArgs : GridCellEventArgs
Remarks
GridCellPushButtonClickEventArgs is a custom event argument class used by the PushButtonClick event when the user is clicks a pushbutton cell using a mouse click or keyboard.
You can disallow the dragging of specific columns or rows at run-time when you assign True to System.ComponentModel.CancelEventArgs.Cancel.
You can also modify the Destination.
Constructors
GridCellPushButtonClickEventArgs(Int32, Int32)
Initializes a new object.
Declaration
public GridCellPushButtonClickEventArgs(int rowIndex, int colIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | rowIndex | The row index. |
| System.Int32 | colIndex | The column index. |