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

Click here to see the list of members.

Collapse/Expand Example
The following example gets the lines from the "string" field of a Text node and prints them to the console:
C#
Vrml.EAI.Node text = ...;
Vrml.EAI.Field.EventOutMFString string_changed = (Vrml.EAI.Field.EventOutMFString)text.GetEventOut("string_changed");
string[] s = string_changed.GetValue();
for (int i = 0; i < s.Length; ++i)
    System.Console.WriteLine(s[i]);