Sets the value of the SFBool event-in slot.
Declaring type: EventInSFBool
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract void SetValue (
        bool value
) 
Parameters
value
The new boolean value.
Collapse/Expand Example
The following example demonstrates how to bind a Viewpoint:
C#
Vrml.EAI.Node viewpoint = ...;
Vrml.EAI.Field.EventInSFBool set_bind = (Vrml.EAI.Field.EventInSFBool)viewpoint.GetEventIn("set_bind");
set_bind.SetValue(true);