A node of the parameter tree.
Default constructor
public Void ParameterTreeNode()
Localized caption.
public String Caption { get; set; }
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; }
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. |
Type | Summary |
---|---|
ArgumentNullOrEmptyException | Thrown when name is null or empty. |
Returns a textual representation of this tree node.
public String ToString()
In this document