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

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to check if a Viewpoint is currently bound:
C#
Vrml.EAI.Node viewpoint = ...;
Vrml.EAI.Field.EventOutSFBool isBound = (Vrml.EAI.Field.EventOutSFBool)viewpoint.GetEventOut("isBound");
if (isBound.GetValue() == true)
    System.Console.WriteLine("Viewpoint is bound");
else
    System.Console.WriteLine("Viewpoint is not bound");