Sets the elements of the MFString event-in slot.
Declaring type: EventInMFString
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract void SetValue (
        string[] value
) 
Parameters
value
The new string values.
Collapse/Expand Example
The following example demonstrates how to set the text lines displayed by a Text node:
C#
Vrml.EAI.Node text = ...;
Vrml.EAI.Field.EventInMFString set_string = (Vrml.EAI.Field.EventInMFString)text.GetEventIn("set_string");
string[] lines = new string[]
{
    "Hello World!",
    "This is your X3D browser speaking."
};
set_string.SetValue(lines);