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