Reference to a SFInt32 event-in slot.
C# |
---|
public abstract class EventInSFInt32 : |
EventIn
|
|
Click here to see the list of members.
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);
|