The description of the current scene.
Declaring type: Browser
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string Description { set; }
Property Value

There is no description.

Collapse/Expand Remarks
This is a write-only property. What the browser actually does with the description is implementation-specific. Usually, the description is printed somewhere in the browser GUI or in the title of the browser window.
Collapse/Expand Example
The following example demonstrates how to set the description of the currently loaded scene:
C#
Vrml.EAI.Browser browser = ...;
browser.Description = "Hello World!";