Abstract ancestor of all event-in slots.
C# |
---|
public abstract class EventIn : |
BaseField
|
|
Click here to see the list of members.
The following example demonstrates how to get a reference
to the "addChildren" event-in slot of a "Group" node:
C# |
---|
Vrml.EAI.Node group = browser.GetNode(...);
Vrml.EAI.Field.EventInMFNode addChildren = (Vrml.EAI.Field.EventInMFNode)group.GetEventIn("addChildren");
|