RangeDomainDescription

The description of the RangeDomain to be created. Use the RangeDomainDescription to create a new RangeDomain in a mobile geodatabase, by calling Geodatabase.createDomain. The mobile geodatabase must have been created in ArcGIS Pro or using Geodatabase.create.

Since

200.1.0

Constructors

Link copied to clipboard
constructor(name: String, fieldType: FieldType, minValue: Any, maxValue: Any)

Creates a new range domain description object with the specified name and values.

Properties

Link copied to clipboard

The range domain's maximum value. For fields that utilize a range domain, the field type must match the type of the min and max values.

Link copied to clipboard

The range domain's minimum value. For fields that utilize a range domain, the field type must match the type of the minimum and maximum values.

Inherited properties

Link copied to clipboard

The field type of the domain to be created. Valid field types are FieldType.Int16, FieldType.Int32, FieldType.Float32, FieldType.Float64, and FieldType.Date. For a CodedValueDomainDescription, FieldType.Text is also valid.

Link copied to clipboard

The name of the domain to be created. The domain name must not be empty. It must only consist of alphanumeric characters and underscores, and it must not start with a number or an underscore.