Abstract ancestor of all multi-value event-out slots.
C# |
---|
public abstract class EventOutMField : |
EventOut
|
|
Click here to see the list of members.
The following example demonstrates how to get a reference
to the "children" event-out slot of a "Group" node:
C# |
---|
Vrml.EAI.Node group = browser.GetNode(...);
Vrml.EAI.Field.EventOutMFNode children = (Vrml.EAI.Field.EventOutMFNode)group.GetEventOut("children");
|