The URL of the scene currently loaded.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string WorldURL { get; }
Property Value
URL of the scene currently loaded.
Collapse/Expand Remarks
This is a read-only property.
Collapse/Expand Example
The following example prints the URL of the currently loaded 3D scene to the console:
C#
Vrml.EAI.Browser browser = ...;
System.Console.WriteLine("Browser.WorldURL = \"" + browser.WorldURL + '"');