Reference to a SFString event-in slot.
C# |
---|
public abstract class EventInSFString : |
EventIn
|
|
Click here to see the list of members.
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!");
|