ComponentOne Xamarin.Android
DetailCellCreating Event


C1.Android.Grid Assembly > C1.Android.Grid Namespace > FlexGridDetailProvider Class : DetailCellCreating Event
Occurs when the detail cell is being created.
Syntax
'Declaration
 
Public Event DetailCellCreating As EventHandler(Of GridDetailCellCreatingEventArgs)
'Usage
 
Dim instance As FlexGridDetailProvider
Dim handler As EventHandler(Of GridDetailCellCreatingEventArgs)
 
AddHandler instance.DetailCellCreating, handler
public event EventHandler<GridDetailCellCreatingEventArgs> DetailCellCreating
Event Data

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

PropertyDescription
Gets or sets the visual element displayed as the row details.  
Gets the row associated to this details row.  
See Also