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

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to change the description of an Anchor node:
C#
Vrml.EAI.Node anchor = ...;
Vrml.EAI.Field.EventInSFString set_description = (Vrml.EAI.Field.EventInSFString)anchor.GetEventIn("set_description");
set_description.SetValue("Hello World!");