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