Class CellCheckBoxClickEventArgs
Provides data for SfDataGrid.CellCheckBoxClick event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.WPF.dll
Syntax
public class CellCheckBoxClickEventArgs : GridCancelEventArgs
Constructors
CellCheckBoxClickEventArgs(Object)
Initializes a new instance of CellCheckBoxClickEventArgs class.
Declaration
public CellCheckBoxClickEventArgs(object originalSource)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | originalSource | The source of the event. |
Properties
Column
Gets the Column for the cell.
Declaration
public GridColumn Column { get; }
Property Value
| Type |
|---|
| GridColumn |
ColumnIndex
Gets the column index for the cell.
Declaration
public int ColumnIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |
NewValue
Gets or sets the new value of the checkbox cell.
Declaration
public CheckState NewValue { get; set; }
Property Value
| Type |
|---|
| CheckState |
OldValue
Gets the old value of the checkbox cell.
Declaration
public CheckState OldValue { get; }
Property Value
| Type |
|---|
| CheckState |
Record
Gets the underlying data record for the cell.
Declaration
public object Record { get; }
Property Value
| Type |
|---|
| System.Object |
RowIndex
Gets the row index for the cell.
Declaration
public int RowIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |