Returns the type of the node
Declaring type: Node
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string Type { get; }
Property Value
The type of the node.
Collapse/Expand Remarks
This is a readonly property.
Collapse/Expand Example
The following example prints the type of a node to the console:
C#
Vrml.EAI.Node node = browser.GetNode(...);
System.Console.WriteLine("node.Type = \"" + node.Type + '"');