Reference to a SFInt32 event-out slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventOutSFInt32 :  EventOut
Collapse/Expand Remarks
Use this class to read values from SFInt32 event-out slots.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to get the currently selected choice of a Switch node:
C#
Vrml.EAI.Node switchNode = ...;
Vrml.EAI.Field.EventOutSFInt32 whichChoice_changed = (Vrml.EAI.Field.EventOutSFInt32)switchNode.GetEventOut("whichChoice_changed");
System.Console.WriteLine("choice = " + whichChoice_changed.GetValue());