Provides access to members that return and modify range domain values.
Description
IRangeDomaininterface is used to maintain information regarding this range domain. Properties allow you to set and retrieve the minimum and maximum values for this domain type.
When To Use
IRangeDomain is the interface on a RangeDomain object used to get and set the properties of a range domain object. For example, use the IRangeDomain interface when creating a new RangeDomain to set its minimum and maximum values.
Members
Name | Description | |
---|---|---|
MaxValue | The maximum value for the associated attribute. | |
MinValue | The minimum value for the associated attribute. |
IRangeDomain.MaxValue Property
The maximum value for the associated attribute.
Public Property MaxValue As Object
public object MaxValue {get; set;}
Description
The MaxValueproperty returns or sets the maximum value set for this range domain.
Remarks
This property returns the maximum valid value associated with the range domain.
IRangeDomain.MinValue Property
The minimum value for the associated attribute.
Public Property MinValue As Object
public object MinValue {get; set;}
Description
MinValue property returns the min value set for this range domain.
Remarks
This property returns the minimum valid value associated with the range domain.
Classes that implement IRangeDomain
Classes | Description |
---|---|
RangeDomain | Esri Range Domain object. |