See Also: TreeNodeValueAttribute Members
This attribute is applied to a property of a tree node class to indicate that the property holds a column value of the node.
In the following example, the Frombulator property is tagged as Column 2 of the node which implements it:
C# Example
[TreeNodeValue(Column=2)]
public string Frombulator {
get {
return frombulator;
}
}