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

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to get the transparency of an object:
C#
Vrml.EAI.Node material = ...;
Vrml.EAI.Field.EventOutSFFloat transparency_changed = (Vrml.EAI.Field.EventOutSFFloat)material.GetEventOut("transparency_changed");
System.Console.WriteLine("transparency = " + transparency_changed.GetValue());