DotSum Property

 

The DotSum property returns or sets the Sum of dots for a density map. Returns an integer.

 

Syntax

object.DotSum

object.DotSum = DotSum

 

Parameter

Type

Description

DotSum

Integer

required; number of dots that represent the sum total of the variable

 

Remarks

The Method property must be mvDensityMethodDotSum to use this property.

 

Example 1

This example returns the dot sum value for a density map.

 

Debug.Print "Dot sum value = "; DensityMap.DotSum

 

Example 2

This example sets the dot sum value to 250. Note that the Method property must be mvDensityMethodDotSum to use this value.

 

DensityMap.Method = mvDensityMethodDotSum

DensityMap.DotSum = 250

 

Example 3

This script displays all the properties in the DensityMap object.

 

Used by: DensityMap object