Reference to a MFInt32 event-in slot.
C# |
---|
public abstract class EventInMFInt32 : |
EventIn
|
|
Click here to see the list of members.
The following example demonstrates how to write three
integer values (0, 1 and 2) into the "colorIndex" field of an
IndexedFaceSet node:
C# |
---|
Vrml.EAI.Node indexedFaceSet = ...;
Vrml.EAI.Field.EventInMFInt32 set_colorIndex = (Vrml.EAI.Field.EventInMFInt32)indexedFaceSet.GetEventIn("set_colorIndex");
set_colorIndex.SetValue(new int[] { 0, 1, 2 });
|