ComponentOne TileControl for WinForms
C1.Win.C1TileControl.4.5.2 Assembly / C1.Win.C1Tile Namespace / C1TileControl Class / CompareGroups Event

In This Topic
    CompareGroups Event (C1TileControl)
    In This Topic
    Occurs when sorting groups in C1TileControl to compare two groups before their reordering.
    Syntax
    'Declaration
     
    
    Public Event CompareGroups As EventHandler(Of CompareGroupsEventArgs)
    public event EventHandler<CompareGroupsEventArgs> CompareGroups
    Event Data

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

    PropertyDescription
    Gets the first group to compare.  
    Gets the second group to compare.  
    Gets or sets a signed integer that indicates the relative values of Group1 and Group2 as follow: less than 0 (if Group1 is less than Group2), zero (if Group1 equals Group2), greater than zero (if Group1 is greater than Group2).  
    See Also