Returns the current value of the SFBool event-out slot.
Declaring type: EventOutSFBool
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract bool GetValue ()
Return Value
The boolean value.
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");