Syntax
| C# |
|---|
public abstract void Set1Value (
int index,
int value
) |
Example
| C# |
|---|
Vrml.EAI.Node indexedFaceSet = ...;
Vrml.EAI.Field.EventInMFInt32 set_colorIndex = (Vrml.EAI.Field.EventInMFInt32)indexedFaceSet.GetEventIn("set_colorIndex");
set_colorIndex.Set1Value(0, 2);
|