The name of the X3D browser.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string Name { get; }
Property Value
The name of the X3D browser. The contents of this string are unspecified and browser-specific.
Collapse/Expand Remarks
This is a read-only property.
Collapse/Expand Example
The following example prints the name of the browser to the console:
C#
Vrml.EAI.Browser browser = ...;
System.Console.WriteLine("Browser.Name = \"" + browser.Name + '"');