CollectionView.GroupDescriptions Property

Definition

Gets a collection of GroupDescription objects that describes how the items in the collection are grouped in the view.

public:
 virtual property System::Collections::ObjectModel::ObservableCollection<System::ComponentModel::GroupDescription ^> ^ GroupDescriptions { System::Collections::ObjectModel::ObservableCollection<System::ComponentModel::GroupDescription ^> ^ get(); };
public virtual System.Collections.ObjectModel.ObservableCollection<System.ComponentModel.GroupDescription> GroupDescriptions { get; }
member this.GroupDescriptions : System.Collections.ObjectModel.ObservableCollection<System.ComponentModel.GroupDescription>
Public Overridable ReadOnly Property GroupDescriptions As ObservableCollection(Of GroupDescription)

Property Value

null in all cases.

Implements

Remarks

The value of this property is always null because the CollectionView class does not support grouping over its underlying collection. The derived classes ListCollectionView and BindingListCollectionView do support grouping.

Applies to

See also