ComponentOne Xamarin.Android
RowHeaderLoading Event


C1.Android.Grid Assembly > C1.Android.Grid Namespace > FlexGridDetailProvider Class : RowHeaderLoading Event
Occurs before the row header is loaded.
Syntax
'Declaration
 
<ObsoleteAttribute("Use DetailExpandedIconTemplate and DetailCollapsedIconTemplate instead to customize icons.")>
Public Event RowHeaderLoading As EventHandler(Of GridRowHeaderLoadingEventArgs)
'Usage
 
Dim instance As FlexGridDetailProvider
Dim handler As EventHandler(Of GridRowHeaderLoadingEventArgs)
 
AddHandler instance.RowHeaderLoading, handler
[Obsolete("Use DetailExpandedIconTemplate and DetailCollapsedIconTemplate instead to customize icons.")]
public event EventHandler<GridRowHeaderLoadingEventArgs> RowHeaderLoading
Event Data

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

PropertyDescription
Gets the expand/collapse button.  
Gets the row associated to this details row.  
See Also