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