Symbolic name for the MFInt32 field type.
C# |
---|
public const int MFInt32 = 14 |
The following example demonstrates how to check if a field
is a MFInt32 field:
C# |
---|
Vrml.EAI.Field.BaseField field = ...;
if (field.Type == Vrml.EAI.Field.BaseField.MFInt32)
{
...
}
|