'Declaration
Public Event SettingCellValue As EventHandler(Of DataGridSettingCellValueEventArgs)
public event EventHandler<DataGridSettingCellValueEventArgs> SettingCellValue
Event Data
The event handler receives an argument of type DataGridSettingCellValueEventArgs containing data related to this event. The following DataGridSettingCellValueEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Row | Gets the row. (Inherited from C1.WPF.DataGrid.DataGridRowEventArgs) |
Value | Gets the object that is attempted to be set in a cell of this column and the specified row. |
See Also