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.
- C#
- VB.NET
public class SalTreeItem : TreeNode
Public Class SalTreeItem
Inherits TreeNode
Example:
using PPJ.Runtime.Windows;
var node = new SalTreeItem("Customer") { Value = 42, IsEditable = false };
Constructors
SalTreeItem()
Initializes a tree node with no display text.
SalTreeItem(text)
Initializes a tree node with the supplied display text.
| Name | Type | Description |
|---|---|---|
| text | String | The node label. |
Properties
IsDynamic
Boolean: Gets or sets whether the node was created dynamically by application code.
IsEditable
Boolean: Gets or sets whether SAL tree editing permits the node label to be edited.
Value
SalNumber: Gets or sets the application-defined SAL numeric value associated with this node.