2027 Method
Changes 0
M

SchemaBuilder.AddMapField

Description:
Creates a field containing an ordered key-value map in the Schema, with given name and type of contained values.
Remarks:
The supported types for the keys are Boolean, Byte, Int16, Int32, Int64, ElementId, GUID and String. Floating-point types (Float, Double, XYZ and UV) are not supported because round-off errors frequently cause numeric instability. Subentities are not supported because they require a custom comparison operator. The suggested workarounds are either placing key values into an Array and using array indices for keys, or just using an Array of subentities. Natural comparison of contained types is used for sorting. The supported types for values are the same as for simple fields. See AddSimpleField(String, Type) for details.

Note that a schema may contain a maximum of 256 fields.

public FieldBuilder AddMapField(
	string fieldName,
	Type keyType,
	Type valueType
)
  • String
    fieldName
    The name of the new field.
  • Type
    keyType
    The type of the keys for the new field.
  • Type
    valueType
    The type of the values for the new field.
Return Value FieldBuilder The FieldBuilder object may be used to add more details to the field. Make sure to set the unit type if the field contains floating-point values.