GetMajorDTSpacingAfterBreak

The GetMajorDTSpacingAfterBreak method returns the major tick division after the break pointed to by breakIndex in the break list. Returns an Integer.

Syntax

object.GetMajorDTSpacingAfterBreak ( breakIndex )

 

Parameter Type Description
breakIndex Integer required, the position of the break in break list; the break list index starts at 1

 

Remarks

The units of the reported value will match the units used to define the major tick spacing for the axis.

See Axis Properties - Break Axis Page for detailed information on breaking an axis. See AutoBreakAxis object for a full example script.

Example 1

This example shows how to return the major tick spacing after the second break in the break list.

Debug.Print XAxis1.AxisBreak.GetMajorDTSpacingAfterBreak(2)

 

Used by: AutoBreakAxis object