'Declaration
Public Event SettingCellValue As System.EventHandler(Of DataGridSettingCellValueEventArgs)
public event System.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.Silverlight.DataGrid.DataGridRowEventArgs) |
Value | Gets the object that is attempted to be set in a cell of this column and the specified row. |
See Also