The following example demonstrates how to replace the first line
displayed by a Text node:
C#
Vrml.EAI.Node text = ...;
Vrml.EAI.Field.EventInMFString set_string = (Vrml.EAI.Field.EventInMFString)text.GetEventIn("set_string");
set_string.Set1Value(0, "New first line");