Sets one element of the MFString event-in slot.
Declaring type: EventInMFString
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract void Set1Value (
        int index,
        string value
) 
Parameters
index
The index of the element, starting at 0
value
The new string value.
Collapse/Expand Example
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");