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 void GetValue (
        string[] value
) 
Parameters
value
An array of strings that gets filled with the current string values of the MFString event-out slot.
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");
int size = string_changed.Size;
string[] s = new string[size];
string_changed.GetValue(s);
for (int i = 0; i < size; ++i)
    System.Console.WriteLine(s[i]);