Abstract ancestor of all event-out slots.
C# |
---|
public abstract class EventOut : |
BaseField
|
|
Click here to see the list of members.
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");
|