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