Gets an event-in slot of the node.
Declaring type: Node
Namespace: Vrml.EAI
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public abstract EventIn GetEventIn (
        string name
) 
Parameters
name
The name of the event-in slot
Return Value
The event-in slot.
Collapse/Expand Remarks
Whenever you need to write values into fields of a node, you have to call this method. It returns a reference to an EventIn object. You have to cast that object to the concrete type of the field.
Collapse/Expand Example
The following example demonstrates how to get a reference to the "addChildren" field of a "Group" node:
C#
Vrml.EAI.Node group = browser.GetNode(...);
Vrml.EAI.Field.EventInMFNode addChildren = (Vrml.EAI.Field.EventInMFNode)group.GetEventIn("addChildren");