Returns one element of a MFFloat event-out slot.
Declaring type: EventOutMFInt32
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract int Get1Value (
        int index
) 
Parameters
index
The index of the element, starting at 0
Return Value
The integer value.
Collapse/Expand Example
The following example gets the first value of an "index_changed" event-out slot of a Script node and prints it to the console:
C#
Vrml.EAI.Node script = ...;
Vrml.EAI.Field.EventOutMFInt32 index_changed = (Vrml.EAI.Field.EventOutMFInt32)script.GetEventOut("index_changed");
System.Console.WriteLine(index_changed.Get1Value(0));