Reference to a SFInt32 event-in slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventInSFInt32 :  EventIn
Collapse/Expand Remarks
Use this class to write values into SFInt32 event-in slots.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to switch between different geometries under a Switch node:
C#
Vrml.EAI.Node switchNode = ...;
Vrml.EAI.Field.EventInSFInt32 set_whichChoice = (Vrml.EAI.Field.EventInSFInt32)switchNode.GetEventIn("set_whichChoice");
set_whichChoice.SetValue(2);