Initializes a VrmlEvent with a given EventOut object, timestamp and user-provided data object.
Declaring type: VrmlEvent
Namespace: Vrml.EAI.Event
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public VrmlEvent (
        BaseField src,
        double ts,
        object data
) 
Parameters
src
The event-out slot whose value changed.
ts
The time when the event happened, measured in seconds since January 1st, 1970, 00:00:00 GMT.
data
A user-provided data object.
Collapse/Expand Remarks
Usually, you do not create your own VRML events - they get generated by the EventOut object when it fires an event, and you get them as a parameter to your VrmlEventDelegate. But nevertheless this constructor is public which allows you to create your own events and send them to your delegate.