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

Click here to see the list of members.

Collapse/Expand Example
The following example gets the values of an "index_changed" event-out slot of a Script node and prints them to the console:
C#
Vrml.EAI.Node script = ...;
Vrml.EAI.Field.EventOutMFInt32 index_changed = (Vrml.EAI.Field.EventOutMFInt32)script.GetEventOut("index_changed");
int[] v = index_changed.GetValue();
for (int i = 0; i < v.Length; ++i)
    System.Console.WriteLine(v[i]);