Interface ITreeItem
- Namespace
- Loehnert.Lisrt.TypeAndResult.TypeDataControl.ViewModels
- Assembly
- Loehnert.Lisrt.TypeAndResult.dll
Interface for a type data tree item.
public interface ITreeItem
Properties
IsExpanded
Gets or sets a value indicating whether the ITreeItem associated with this object is expanded.
bool IsExpanded { get; set; }
Property Value
IsReadOnly
Gets or sets a value indicating whether the view model is only readable.
bool IsReadOnly { get; set; }
Property Value
IsSelected
Gets or sets a value indicating whether the ITreeItem associated with this object is selected.
bool IsSelected { get; set; }
Property Value
SubTreeItems
Gets the sub tree items.
ObservableCollection<ITreeItem> SubTreeItems { get; }
Property Value
TreeItemName
Gets the translatable Name for the tree item.
string TreeItemName { get; }