ComponentOne DataGrid for WPF and Silverlight
LoadedCellPresenter Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : LoadedCellPresenter Event
Occurs after the visual element of the cell is added to the visual tree and is ready for interaction.
Syntax
'Declaration
 
Public Event LoadedCellPresenter As System.EventHandler(Of DataGridCellEventArgs)
public event System.EventHandler<DataGridCellEventArgs> LoadedCellPresenter
Event Data

The event handler receives an argument of type DataGridCellEventArgs containing data related to this event. The following DataGridCellEventArgs properties provide information specific to this event.

PropertyDescription
Gets the cell.  
See Also