'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.
Property | Description |
---|---|
ExpandButton | Gets the expand/collapse button. |
Row | Gets the row associated to this details row. |
See Also