Reference to a SFString event-out slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventOutSFString :  EventOut
Collapse/Expand Remarks
Use this class to read values from SFString event-out slots.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example demonstrates how to get the description field of an Anchor node:
C#
Vrml.EAI.Node anchor = ...;
Vrml.EAI.Field.EventOutSFString description_changed = (Vrml.EAI.Field.EventOutSFString)anchor.GetEventOut("description_changed");
System.Console.WriteLine("description = " + description_changed.GetValue());