Returns the current value of a MFString event-out slot.
Declaring type: EventOutMFString
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string[] GetValue ()
Return Value
The current string values.
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]);