Class CellButtonClickEventArgs
Represents a class that provides the data for the button click event.
Inherited Members
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class CellButtonClickEventArgs : GridCancelEventArgs
Constructors
CellButtonClickEventArgs(Object)
Initializes a new instance of the CellButtonClickEventArgs class.
Declaration
public CellButtonClickEventArgs(object originalSender)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSender | The original sender of the object. |
Properties
Column
Gets the column of the corresponding cell.
Declaration
public GridColumn Column { get; }
Property Value
Type |
---|
GridColumn |
ColumnIndex
Gets the column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
DisplayText
Gets the value of the cell button.
Declaration
public string DisplayText { get; }
Property Value
Type |
---|
System.String |
Record
Gets the row data of the corresponding cell button.
Declaration
public object Record { get; }
Property Value
Type |
---|
System.Object |
RowIndex
Gets the row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
Type |
---|
System.Int32 |