Class HierarchyDescriptor
Describes the hierarchy relation in the terms of member access expression.
Inherited Members
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class HierarchyDescriptor : DescriptorBase, INotifyPropertyChanged, ISuspendNotifications
Constructors
HierarchyDescriptor(Expression<Func<Object, IEnumerable>>)
Initializes a new instance of the HierarchyDescriptor class.
Declaration
public HierarchyDescriptor(Expression<Func<object, IEnumerable>> hierarchySelector)
Parameters
System.Linq.Expressions.Expression<System.Func<System.Object, System.Collections.IEnumerable>>
hierarchySelector
The hierarchy descriptor expression. |
Properties
HierachySelector
Gets the hierarchy selector expression that was used to create the descriptor.
Declaration
public Expression<Func<object, IEnumerable>> HierachySelector { get; }
Property Value
System.Linq.Expressions.Expression<System.Func<System.Object, System.Collections.IEnumerable>>
|