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