The version of the X3D browser.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string Version { get; }
Property Value
The version 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 version of the browser to the console:
C#
Vrml.EAI.Browser browser = ...;
System.Console.WriteLine("Browser.Version = \"" + browser.Version + '"');