Sets one element of the MFFloat event-in slot.
Declaring type: EventInMFFloat
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract void Set1Value (
        int index,
        float value
) 
Parameters
index
The index of the element, starting at 0.
value
The new float value.
Collapse/Expand Example
The following example demonstrates how to write a float value (0.5) into the first element of the "key" field of a CoordinateInterpolator node:
C#
Vrml.EAI.Node coordinateInterpolator = ...;
Vrml.EAI.Field.EventInMFFloat set_key = (Vrml.EAI.Field.EventInMFFloat)coordinateInterpolator.GetEventIn("set_key");
set_key.Set1Value(0, 0.5f);