Syntax
| C# |
|---|
| public const int LAST_IDENTIFIER = 5 |
Remarks
Example
| C# |
|---|
Vrml.EAI.Event.BrowserEvent evt = ...;
if (evt.ID < Vrml.EAI.Event.BrowserEvent.LAST_IDENTIFIER)
{
// A standard EAI event happened
...
}
else
{
// A browser-specific event happened
...
}
|