HierarchyInfo.NodeType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets the type of node added to the hierarchy.
public:
abstract property System::String ^ NodeType { System::String ^ get(); };
public abstract string NodeType { get; }
member this.NodeType : string
Public MustOverride ReadOnly Property NodeType As String
Property Value
The node type.
Examples
The following example gets the value of the NodeType property.
public override string NodeType
{
get
{
return "DemoHierarchyInfo.MyNode";
}
}
Remarks
You should set the NodeType property to a descriptive string that describes the custom node.