Defines the first event identifier that is not used by EAI standard events.
Declaring type: BrowserEvent
Namespace: Vrml.EAI.Event
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public const int LAST_IDENTIFIER = 5
Collapse/Expand Remarks
All event IDs for EAI standard events are smaller than this identifier. There might be browser-specific events whose ID is greater than or equal to this identifier.
Collapse/Expand Example
The following example demonstrates how to check if a browser event is a standard EAI event or a browser-specific event:
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
    ...
}