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

In This Topic
    GettingCellValue Event
    In This Topic
    Occurs when the value of a cell is requested for export operations.
    Syntax
    '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.

    PropertyDescription
    Gets the row. (Inherited from C1.WPF.DataGrid.DataGridRowEventArgs)
    Gets or sets an object that represent the value of the cell belonging to this column and specified row.  
    See Also