ComponentOne DataGrid for WPF and Silverlight
GettingCellValue Event (DataGridTemplateColumn)

C1.WPF.DataGrid Namespace > DataGridTemplateColumn Class : GettingCellValue Event
Occurs when the value of a cell is requested for export operations.
Syntax
'Declaration
 
Public Event GettingCellValue As System.EventHandler(Of DataGridGettingCellValueEventArgs)
public event System.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