C1.Win.FlexGrid Namespace / C1FlexGrid Class / RowDetailsApplying Event

RowDetailsApplying Event (C1FlexGrid)
Fires for each data object in the C1FlexGrid’s data source during of assigning the RowDetailProvider property.
Syntax
'Declaration
 
Public Event RowDetailsApplying As EventHandler(Of RowDetailsApplyingEventArgs)
 
Event Data

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

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets the index of the row that caused the event.  
Remarks

The event arguments contain RowDetailsApplyingEventArgs.DataObject property representing the data object in the corresponding data source.

Application can analyze RowDetailsApplyingEventArgs.DataObject property and cancel applying details for individual rows by setting event arguments’ System.ComponentModel.CancelEventArgs.Cancel property to true.

See Also