GroupValueTemplateSelector Property
See Also 
Xceed.Wpf.DataGrid Assembly > Xceed.Wpf.DataGrid Namespace > Column Class : GroupValueTemplateSelector Property

Gets or sets a DataTemplateSelector that provides a way to apply a different GroupValueTemplates based on custom logic.

Syntax

Visual Basic (Declaration) 
Public Property GroupValueTemplateSelector As DataTemplateSelector
C# 
public DataTemplateSelector GroupValueTemplateSelector {get; set;}

Return Value

A reference to a DataTemplateSelector that provides a way to apply a different GroupValueTemplates based on custom logic. By default, a null reference (Nothing in Visual Basic).

Remarks

To provide a custom DataTemplateSelector, a class that derives from the DataTemplateSelector class and overrides the SelectTemplate method to return the appropriate DataTemplate, must be created.

Requirements

Supported Frameworks: Microsoft .NET Framework version 3.5

See Also