Class TreeGrid
Represents a control that displays data in a tree based grid.
Inherited Members
Namespace: Telerik.Windows.Controls.Pivot
Assembly: Telerik.Windows.Controls.Pivot.dll
Syntax
public class TreeGrid : TableBase
Constructors
TreeGrid()
Fields
HierarchyAdapterProperty
Identifies the HierarchyAdapter dependency property.
Declaration
public static readonly DependencyProperty HierarchyAdapterProperty
Field Value
System.Windows.DependencyProperty
|
ItemsSourceProperty
Identifies the ItemsSource dependency property.
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
System.Windows.DependencyProperty
|
Properties
HierarchyAdapter
Gets or sets an IHierarchyAdapter used to describe the data hierarchy.
Declaration
public IHierarchyAdapter HierarchyAdapter { get; set; }
Property Value
IHierarchyAdapter
|
ItemsSource
Gets or sets a collection used to generate the content of the TreeGrid.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.Collections.IEnumerable
|
Methods
CollapseColumn(Object)
Collapse an item in the column area.
Declaration
public void CollapseColumn(object item)
Parameters
System.Object
item
The item that will be collapsed. |
CollapseRow(Object)
Collapse an item in the row area.
Declaration
public void CollapseRow(object item)
Parameters
System.Object
item
The item that will be collapsed. |
ExpandColumn(Object)
Expand an item in the column area.
Declaration
public void ExpandColumn(object item)
Parameters
System.Object
item
The item that will be expanded. |
ExpandRow(Object)
Expand an item in the row area.
Declaration
public void ExpandRow(object item)
Parameters
System.Object
item
The item that will be expanded. |
IsColumnCollapsed(Object)
Gets a value that indicates if an item in the column area is collapsed.
Declaration
public bool IsColumnCollapsed(object item)
Parameters
System.Object
item
The item. |
Returns
System.Boolean
true if the item is collapsed; otherwise, false. |
IsRowCollapsed(Object)
Gets a value that indicates if an item in the row area is collapsed.
Declaration
public bool IsRowCollapsed(object item)
Parameters
System.Object
item
The item. |
Returns
System.Boolean
true if the item is collapsed; otherwise, false. |