Class GridCellPushButtonClickEventArgs
Provides data about the PushButtonClick event when the user clicks a pushbutton cell.
Inheritance
System.Object
System.EventArgs
GridCellPushButtonClickEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
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. |