Scheduler for WPF and Silverlight | ComponentOne
C1.Silverlight.Schedule Namespace / GroupStyleSelector Delegate
Group whose style is to be selected.
Level of the group.

In This Topic
    GroupStyleSelector Delegate
    In This Topic
    Delegate used to select the group style as a function of the parent group and its level.
    Syntax
    'Declaration
     
    
    Public Delegate Function GroupStyleSelector( _
       ByVal group As CollectionViewGroup, _
       ByVal level As Integer _
    ) As GroupStyle
    public delegate GroupStyle GroupStyleSelector( 
       CollectionViewGroup group,
       int level
    )

    Parameters

    group
    Group whose style is to be selected.
    level
    Level of the group.

    Return Value

    Selected GroupStyle object.
    See Also