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

Click here to see the list of members.

Collapse/Expand Example
The following example gets the keys from the "key" field of a CoordinateInterpolator node and prints them to the console:
C#
Vrml.EAI.Node coordinateInterpolator = ...;
Vrml.EAI.Field.EventOutMFFloat key_changed = (Vrml.EAI.Field.EventOutMFFloat)coordinateInterpolator.GetEventOut("key_changed");
float[] f = key_changed.GetValue();
for (int i = 0; i < f.Length; ++i)
    System.Console.WriteLine(f[i]);