Symbolic name for the MFInt32 field type.
Declaring type: BaseField
Namespace: Vrml.EAI.Field
Assembly: VrmlEAI.NET
Collapse/Expand Syntax
C#
public const int MFInt32 = 14
Collapse/Expand Remarks
This is the value of the Type property for MFInt32 fields.
Collapse/Expand Example
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)
{
    ...
}