Show / Hide Table of Contents

Interface IComposableTreeViewItem

Defines members to display an item in the ComposableTreeView

Namespace: Sartorius.SAF.Presentation.Controls
Assembly: Sartorius.SAF.Presentation.Controls.dll
Syntax
public interface IComposableTreeViewItem

Properties

View Source

Caption

Gets the caption.

Declaration
string Caption { get; }
Property Value
Type Description
System.String
View Source

HasAccess

Indicates whether the item is accessable by the executor.

Declaration
bool HasAccess { get; }
Property Value
Type Description
System.Boolean
View Source

Id

Gets the unique identifier of the IComposableTreeViewItem.

Declaration
Guid Id { get; }
Property Value
Type Description
System.Guid
View Source

ParentId

Gets the unique identifier of the IComposableTreeViewItem parent.

Declaration
Guid? ParentId { get; }
Property Value
Type Description
System.Nullable<System.Guid>
View Source

StackRank

Gets the stack rank of the IComposableTreeViewItem that defines the position in the treeview.

Declaration
int StackRank { get; }
Property Value
Type Description
System.Int32
Remarks

If multiple items with the same StackRank are available, then it is sorted by the full name of the item.

Methods

View Source

OnActivate()

Is called when the instance is activated.

Declaration
void OnActivate()

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX