'Declaration
Public Event GettingCellValue As EventHandler(Of DataGridGettingCellValueEventArgs)
public event EventHandler<DataGridGettingCellValueEventArgs> GettingCellValue
Event Data
The event handler receives an argument of type DataGridGettingCellValueEventArgs containing data related to this event. The following DataGridGettingCellValueEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Row | Gets the row. (Inherited from C1.WPF.DataGrid.DataGridRowEventArgs) |
Value | Gets or sets an object that represent the value of the cell belonging to this column and specified row. |
See Also