ComponentOne Dialog for ASP.NET Web Forms
C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / ColumnUngrouping Event

In This Topic
    ColumnUngrouping Event
    In This Topic
    Occurs when a column is ungrouped, but before the C1GridView handles the operation.
    Syntax
    'Declaration
     
    Public Event ColumnUngrouping As C1GridViewColumnUngroupEventHandler
    public event C1GridViewColumnUngroupEventHandler ColumnUngrouping
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    The C1BaseField object being ungrouped.  
    Remarks
    To cancel the action set the Cancel property of the C1GridViewColumnUngroupEventArgs object to true.
    See Also