DotValue Property

 

The DotValue property returns or sets the Dot value for each symbol in a density map. Returns a double.

 

Syntax

object.DotValue

object.DotValue = DotValue

 

Parameter

Type

Description

DotValue

Double

required; data value per dot

 

Remarks

The Method property must be mvDensityMethodDotRatio to use this property.

 

 

Example 1

This example returns the value for each symbol in a density map.

 

Debug.Print "Dot value = "; DensityMap.DotValue

 

Example 2

This example sets the value for each symbol in a density map to 3500. Note that the Method property must be mvDensityMethodDotRatio to use this value. Some rounding will occur depending on data values.

 

DensityMap.Method = mvDensityMethodDotRatio

DensityMap.DotValue = 3500

 

Example 3

This script displays all the properties in the DensityMap object.

 

Used by: DensityMap object