ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / DataGridTemplateColumn Class / SettingCellValue Event

In This Topic
    SettingCellValue Event
    In This Topic
    Occurs when the value of a cell is attempted to be set in operations like clipboard paste.
    Syntax
    '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.

    PropertyDescription
    Gets the row. (Inherited from C1.WPF.DataGrid.DataGridRowEventArgs)
    Gets the object that is attempted to be set in a cell of this column and the specified row.  
    See Also