Reference to a MFString event-in slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventInMFString :  EventIn
Collapse/Expand Remarks
Use this class to write values into MFString event-in slots.
Collapse/Expand Members

Click here to see the list of members.

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);