Returns the current value of a MFInt32 event-out slot.
Declaring type: EventOutMFInt32
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract int[] GetValue ()
Return Value
The current integer values.
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]);