Returns the current value of the SFString event-out slot.
Declaring type: EventOutSFString
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract string GetValue ()
Return Value
The string.
Collapse/Expand Example
The following example demonstrates how to get the description field of an Anchor node:
C#
Vrml.EAI.Node anchor = ...;
Vrml.EAI.Field.EventOutSFString description_changed = (Vrml.EAI.Field.EventOutSFString)anchor.GetEventOut("description_changed");
System.Console.WriteLine("description = " + description_changed.GetValue());