Custom Grouping
Custom grouping is a flexible mechanism for creating RadPropertyGrid groups by using custom logic. It has a higher priority than the applied GroupDescriptors. Grouping is applied if user grouping is enabled through the RadPropertyGrid.EnableGrouping or PropertyGridElement.EnableGrouping properties. By default, grouping is enabled.
You can use the ItemFormatting event to format the group text of the created custom groups.
Using the CustomGrouping Event
The CustomGrouping event is fired if custom grouping is enabled through the RadPropertyGrid.EnableCustomGrouping or PropertyGridElement.EnableCustomGrouping properties. By default, custom grouping is disabled.
PropertyGridTable: The table while holds the items that will be grouped
Item: The item which group is defined
GroupKey: Identifier of the group
Handled: Defines whether the item is processed by the custom algorithm or by the applied group descriptors.
The following example demonstrates how to handle the CustomGrouping event to group the RadPropertyGrid items by the type of the property:
Figure 1: Custom Grouping