MarkInc Property

The MarkInc property returns or sets the bar map increment mark spacing value (Each data increment option). Returns a double.

 

Syntax

object.MarkInc( VariableIndex )

object.MarkInc( VariableIndex ) = MarkInc

 

Parameter

Type

Description

VariableIndex

Integer

required; variable number

MarkInc

Double

required; increment value

 

Example 1

This example returns the value of the increment mark spacing for the first variable.

 

Debug.Print BarMap.MarkInc(1)

 

Example 2

This example sets the increment mark spacing to 50,000 for the first variable.

 

BarMap.MarkInc(1) = 50000

 

Used by: BarMap object