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