Abstract ancestor of all event-out slots.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventOut :  BaseField
Collapse/Expand Remarks
This class simply defines the UserData property that allows to attach arbitrary application-specific data to event-out slots. This is an abstract class, i.e. you cannot create instances of this class. The only way to retrieve instances of this class is the Node.GetEventOut method. Usually you do not use this class directly, but cast it to one of its descendants for the respective VRML data types.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to get a reference to the "isActive" event-out slot of a "TouchSensor" node:
C#
Vrml.EAI.Node touchSensor = browser.GetNode(...);
Vrml.EAI.Field.EventOutSFBool isActive = (Vrml.EAI.Field.EventOutSFBool)touchSensor.GetEventOut("isActive");