Skip to main content
Version: 2025

SalTreeItem

Namespace: PPJ.Runtime.Windows

Assembly: PPJ.Web.50 (5.0.0.0)

Represents a tree node with an associated SAL numeric value and runtime editing flags.

public class SalTreeItem : TreeNode

Example:

using PPJ.Runtime.Windows;

var node = new SalTreeItem("Customer") { Value = 42, IsEditable = false };

Constructors

Instance member SalTreeItem()

Initializes a tree node with no display text.

Instance member SalTreeItem(text)

Initializes a tree node with the supplied display text.

NameTypeDescription
textStringThe node label.

Properties

Instance member IsDynamic

Boolean: Gets or sets whether the node was created dynamically by application code.

Instance member IsEditable

Boolean: Gets or sets whether SAL tree editing permits the node label to be edited.

Instance member Value

SalNumber: Gets or sets the application-defined SAL numeric value associated with this node.