menu

MAUI

  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DataGridCellValueChangedEventArgs - API Reference

    Show / Hide Table of Contents

    Class DataGridCellValueChangedEventArgs

    Provides the data for CellValueChanged event.

    Inheritance
    System.Object
    DataGridCellValueChangedEventArgs
    Namespace: Syncfusion.Maui.DataGrid
    Assembly: Syncfusion.Maui.DataGrid.dll
    Syntax
    public class DataGridCellValueChangedEventArgs : EventArgs

    Constructors

    DataGridCellValueChangedEventArgs(DataGridColumn, RowColumnIndex, Object, Object, Object)

    Initializes a new instance of the DataGridCellValueChangedEventArgs class

    Declaration
    public DataGridCellValueChangedEventArgs(DataGridColumn column, RowColumnIndex rowColumnIndex, object rowData, object newValue, object cellValue)
    Parameters
    Type Name Description
    DataGridColumn column
    RowColumnIndex rowColumnIndex
    System.Object rowData
    System.Object newValue
    System.Object cellValue

    Properties

    CellValue

    Gets the existing value of the cell before it gets changed.

    Declaration
    public object CellValue { get; }
    Property Value
    Type Description
    System.Object

    Column

    Gets the corresponding DataGridColumn of cell.

    Declaration
    public DataGridColumn Column { get; }
    Property Value
    Type Description
    DataGridColumn

    NewValue

    Gets the newly updated value of the cell.

    Declaration
    public object NewValue { get; }
    Property Value
    Type Description
    System.Object

    RowColumnIndex

    Gets the row and column coordinates of corresponding cell.

    Declaration
    public RowColumnIndex RowColumnIndex { get; }
    Property Value
    Type Description
    RowColumnIndex

    RowData

    Gets the corresponding underlying row data of the cell.

    Declaration
    public object RowData { get; }
    Property Value
    Type Description
    System.Object
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved