ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / ColumnGrouped Event

In This Topic
    ColumnGrouped Event (C1GridView)
    In This Topic
    Occurs when a column has been grouped.
    Syntax
    'Declaration
     
    Public Event ColumnGrouped As C1GridViewColumnGroupedEventHandler
    public event C1GridViewColumnGroupedEventHandler ColumnGrouped
    Event Data

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

    PropertyDescription
    Index of the new position.  
    Drag source, the C1BaseField object being dragged.  
    Drop target, the C1BaseField object on which drag source is dropped.  
    Position to drop relative to drop target.  
    Remarks
    You must implement this event if the grid is not bound to a DataSource control.
    See Also