Allows the implementation of a tree structure for configuration parameters.
Localized caption.
public String Caption { get; set; }
List of child nodes.
public IList<IParameterTreeNode> ChildNodes { get; }
Localized description.
public String Description { get; set; }
Name of the tree node.
public String Name { get; set; }
A collection of parameter configuration for this node.
public IList<ParameterConfiguration> Parameters { get; }
A reference to the parent node.
public IParameterTreeNode Parent { get; set; }
Finds a parameter group with the specified name.
public IParameterTreeNode FindGroup(name)
An IParameterTreeNodefor the specified name or null is there is no group for the specified name.
Name | Type | Summary |
---|---|---|
name | String | Name of the parameter group to look for. |
Finds a parameter with the specified name.
public ParameterConfiguration FindParameter(name)
An IParameter for the specified name or null if there is no parameter with the specified name.
Name | Type | Summary |
---|---|---|
name | String | Name of the parameter to find. |
In this document