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 Hierarchy
Declaration
public static readonly DependencyProperty HierarchyAdapterProperty
Field Value
System.
|
ItemsSourceProperty
Identifies the Items
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
System.
|
Properties
HierarchyAdapter
Gets or sets an IHierarchy
Declaration
public IHierarchyAdapter HierarchyAdapter { get; set; }
Property Value
ItemsSource
Gets or sets a collection used to generate the content of the Tree
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.
|
Methods
CollapseColumn(Object)
Collapse an item in the column area.
Declaration
public void CollapseColumn(object item)
Parameters
System. The item that will be collapsed. |
CollapseRow(Object)
Collapse an item in the row area.
Declaration
public void CollapseRow(object item)
Parameters
System. The item that will be collapsed. |
ExpandColumn(Object)
Expand an item in the column area.
Declaration
public void ExpandColumn(object item)
Parameters
System. The item that will be expanded. |
ExpandRow(Object)
Expand an item in the row area.
Declaration
public void ExpandRow(object item)
Parameters
System. 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. The item. |
Returns
System. 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. The item. |
Returns
System. true if the item is collapsed; otherwise, false. |