Packagecom.esri.bacore.thematicmapping.symbolization
Classpublic class RangeInfo
InheritanceRangeInfo Inheritance Object

The RangeInfo class provides information on a range of values.



Public Properties
 PropertyDefined By
  bottomValue : ValueInfo
[read-only] Information on bottom (minimum) value of the range.
RangeInfo
  color : uint
[read-only] Symbolization color.
RangeInfo
  index : int
[read-only] Index of color in the color ramp.
RangeInfo
  topValue : ValueInfo
[read-only] Information on top (maximum) value of the range.
RangeInfo
  type : uint
[read-only] Range type (bitwise collection of flags from the RangeType class).
RangeInfo
Public Methods
 MethodDefined By
  
RangeInfo(type:uint, color:uint, index:int, bottomValue:ValueInfo, topValue:ValueInfo)
Initializes a new instance of the RangeInfo class.
RangeInfo
Property Detail
bottomValueproperty
bottomValue:ValueInfo  [read-only]

Information on bottom (minimum) value of the range.


Implementation
    public function get bottomValue():ValueInfo
colorproperty 
color:uint  [read-only]

Symbolization color.


Implementation
    public function get color():uint
indexproperty 
index:int  [read-only]

Index of color in the color ramp.


Implementation
    public function get index():int
topValueproperty 
topValue:ValueInfo  [read-only]

Information on top (maximum) value of the range.


Implementation
    public function get topValue():ValueInfo
typeproperty 
type:uint  [read-only]

Range type (bitwise collection of flags from the RangeType class).


Implementation
    public function get type():uint

See also

Constructor Detail
RangeInfo()Constructor
public function RangeInfo(type:uint, color:uint, index:int, bottomValue:ValueInfo, topValue:ValueInfo)

Initializes a new instance of the RangeInfo class.

Parameters
type:uint — Range type (bitwise collection of flags from the RangeType class).
 
color:uint — Symbolization color.
 
index:int — Index of color in the color ramp.
 
bottomValue:ValueInfo — Information on bottom (minimum) value of the range.
 
topValue:ValueInfo — Information on top (maximum) value of the range.

See also