The URL of the scene currently loaded.
C# |
---|
public abstract string WorldURL { get; } |
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 + '"');
|