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