Reference to a MFNode event-out slot.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventOutMFNode :  EventOutMField
Collapse/Expand Remarks
Use this class to read values from MFNode event-out slots.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
The following example gets the nodes from the "children" field of a Group node and prints their types to the console:
C#
Vrml.EAI.Node group = ...;
Vrml.EAI.Field.EventOutMFNode children_changed = (Vrml.EAI.Field.EventOutMFNode)group.GetEventOut("children_changed");
Vrml.EAI.Node[] nodes = children_changed.GetValue();
for (int i = 0; i < nodes.Length; ++i)
    if (nodes[i] == null)
        System.Console.WriteLine("null");
    else
        System.Console.WriteLine(nodes[i].Type);