Class DataGridCheckboxSelectorCheckedEventArgs
Provides data for the DataGrid.Checked event. Allows canceling the checkbox state change and modifying the new value.
Inheritance
System.Object
DataGridCheckboxSelectorCheckedEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCheckboxSelectorCheckedEventArgs : CancelEventArgs
Constructors
DataGridCheckboxSelectorCheckedEventArgs()
Initializes a new instance of the DataGridCheckboxSelectorCheckedEventArgs class.
Declaration
public DataGridCheckboxSelectorCheckedEventArgs()
Properties
Column
Gets the Column for the cell.
Declaration
public DataGridColumn Column { get; }
Property Value
| Type |
|---|
| DataGridColumn |
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. When set, this value overrides the default checkbox state.
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 |
RowData
Gets the underlying data record for the cell.
Declaration
public object RowData { get; }
Property Value
| Type |
|---|
| System.Object |
RowIndex
Gets the row index for the cell.
Declaration
public int RowIndex { get; }
Property Value
| Type |
|---|
| System.Int32 |