FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGrid Class / RowDetailsApplying Event

In This Topic
    RowDetailsApplying Event (C1FlexGrid)
    In This Topic
    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)
    public event EventHandler<RowDetailsApplyingEventArgs> RowDetailsApplying
    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