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