Returns one element of a MFString event-out slot.
Declaring type: EventOutMFString
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string Get1Value (
        int index
) 
Parameters
index
The index of the element, starting at 0
Return Value
The string.
Collapse/Expand Example
The following example gets the first line from the "string" field of a Text node and prints it to the console:
C#
Vrml.EAI.Node text = ...;
Vrml.EAI.Field.EventOutMFString string_changed = (Vrml.EAI.Field.EventOutMFString)text.GetEventOut("string_changed");
System.Console.WriteLine(string_changed.Get1Value(0));