Sets the value of the SFBool event-in slot.
C# |
---|
public abstract void SetValue (
bool value
) |
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);
|