Class GroupInfo
Represents grouping metadata info used in the CardView control.
Inheritance
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class GroupInfo : DependencyObject
Constructors
GroupInfo()
Initializes a new instance of the GroupInfo class.
Declaration
public GroupInfo()
Fields
FilterValuesProperty
Identifies the FilterValues dependency property.
Declaration
public static readonly DependencyProperty FilterValuesProperty
Field Value
| Type |
|---|
| System.Windows.DependencyProperty |
ItemsProperty
Identifies the Items dependency property.
Declaration
public static readonly DependencyProperty ItemsProperty
Field Value
| Type |
|---|
| System.Windows.DependencyProperty |
NameProperty
Identifies the Name dependency property.
Declaration
public static readonly DependencyProperty NameProperty
Field Value
| Type |
|---|
| System.Windows.DependencyProperty |
SortDirectionProperty
Identifies the SortDirection dependency property.
Declaration
public static readonly DependencyProperty SortDirectionProperty
Field Value
| Type |
|---|
| System.Windows.DependencyProperty |
Properties
CanInsert
Gets a value indicating whether new items can be inserted into this group.
Declaration
public bool CanInsert { get; }
Property Value
| Type |
|---|
| System.Boolean |
CanInsertAfterThis
Gets a value indicating whether new items can be inserted immediately after this group.
Declaration
public bool CanInsertAfterThis { get; }
Property Value
| Type |
|---|
| System.Boolean |
CheckedValues
Gets or sets the list of values that are currently checked or selected within the group.
Declaration
public List<object> CheckedValues { get; set; }
Property Value
| Type |
|---|
| System.Collections.Generic.List<System.Object> |
FilterValues
Gets or sets the list of values used to filter items within the group.
Declaration
public List<object> FilterValues { get; set; }
Property Value
| Type |
|---|
| System.Collections.Generic.List<System.Object> |
Items
Gets or sets the collection of items that belong to this group.
Declaration
public ObservableCollection<object> Items { get; set; }
Property Value
| Type |
|---|
| System.Collections.ObjectModel.ObservableCollection<System.Object> |
Level
Gets the hierarchical level of the group within the grouping structure.
Declaration
public int Level { get; }
Property Value
| Type |
|---|
| System.Int32 |
Name
Gets or sets the name of the group represented by the GroupInfo instance.
Declaration
public string Name { get; set; }
Property Value
| Type |
|---|
| System.String |
SortDirection
Gets or sets the sort direction applied to the items in this group.
Declaration
public SortingDirection SortDirection { get; set; }
Property Value
| Type |
|---|
| SortingDirection |