Reference to a SFBool event-in slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventInSFBool :  EventIn
Collapse/Expand Remarks
Use this class to write values into SFBool event-in slots.
Collapse/Expand Members

Click here to see the list of members.

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);