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