Class TreeViewItemInfoBase
Provides the information for TreeViewItem.
Implements
System.IDisposable
Namespace: Syncfusion.UI.Xaml.TreeView
Assembly: Syncfusion.TreeView.WinUI.dll
Syntax
public class TreeViewItemInfoBase : Object, IDisposable
Constructors
TreeViewItemInfoBase()
Declaration
public TreeViewItemInfoBase()
Properties
Element
Gets the element of the TreeViewItem.
Declaration
public TreeViewItem Element { get; }
Property Value
Type |
---|
TreeViewItem |
IsCurrentItem
Gets a value indicating whether a border need to draw for the TreeViewItem.
Declaration
public bool IsCurrentItem { get; }
Property Value
Type |
---|
System.Boolean |
IsSelectedItem
Gets a value indicating whether an TreeViewItem is selected or not.
Declaration
public bool IsSelectedItem { get; }
Property Value
Type |
---|
System.Boolean |
ItemIndex
Gets or sets the row index of the TreeViewItem.
Declaration
public int ItemIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Node
Gets the data object of associated with TreeViewItem.
Declaration
public TreeViewNode Node { get; }
Property Value
Type |
---|
TreeViewNode |
TreeView
Gets the instance of SfTreeView.
Declaration
public SfTreeView TreeView { get; }
Property Value
Type |
---|
SfTreeView |
Methods
Dispose()
Dispose all the allocated resources.
Declaration
public void Dispose()
Dispose(Boolean)
Dispose the instances, if parameter is true.
Declaration
protected virtual void Dispose(bool isDisposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isDisposing | Represents the boolean value for disposing objects. |
Implements
System.IDisposable