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