Click or drag to resize

TreeGridItem Class

Item for a TreeGridView for each node of the tree.
Inheritance Hierarchy

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
[ContentPropertyAttribute("Children")]
public class TreeGridItem : GridItem, 
	ITreeGridItem, ITreeItem<ITreeGridItem>, ITreeGridStore<ITreeGridItem>, 
	IDataStore<ITreeGridItem>

The TreeGridItem type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyChildren
Gets the collection of children for this tree grid item.
Public propertyCount
Gets the number of child items.
Public propertyExpandable
Gets a value indicating whether this TreeGridItem is expandable.
Public propertyExpanded
Gets or sets a value indicating whether this TreeGridItem is expanded.
Public propertyItem
Gets the child item at the specified index.
Public propertyParent
Gets or sets the parent of this item.
Top
Remarks
This is the standard implementation. You can implement ITreeGridItem with your own class to use them as nodes in the tree instead.
See Also