Documentation Project
BaseField.SFBool Field
Syntax
Remarks
Example
Collapse All
Symbolic name for the SFBool field type.
Declaring type:
BaseField
Namespace:
Vrml.EAI.Field
Assembly:
VrmlEAI.NET
Syntax
C#
public const int SFBool = 1
Top
Remarks
This is the value of the
Type
property for SFBool fields.
Top
Example
The following example demonstrates how to check if a field is a SFBool field:
C#
Vrml.EAI.Field.BaseField field = ...; if (field.Type == Vrml.EAI.Field.BaseField.SFBool) { ... }
Top
Generated by
ImmDoc .NET
.