Sets the value of a SFString event-in slot.
Declaring type: EventInSFString
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract void SetValue (
        string value
) 
Parameters
value
The new string value.
Collapse/Expand Example
The following example demonstrates how to change the description of an Anchor node:
C#
Vrml.EAI.Node anchor = ...;
Vrml.EAI.Field.EventInSFString set_description = (Vrml.EAI.Field.EventInSFString)anchor.GetEventIn("set_description");
set_description.SetValue("Hello World!");