Abstract ancestor of all multi-value event-out slots.
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract class EventOutMField :  EventOut
Collapse/Expand Remarks
This class simply defines the Size property that allows to determine the number of elements in a multi-value event-out slot. This is an abstract class, i.e. you cannot create instances of this class. The only way to retrieve instances of this class is the Node.GetEventOut method. Usually you do not use this class directly, but cast it to one of its descendants for the respective VRML data types.
Collapse/Expand Members

Click here to see the list of members.

Collapse/Expand Example
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");