BreakLine Property

 

The BreakLine property returns or sets a line graph map's break line properties. Returns a LineFormat object. This is a read-only property.

 

Syntax

object.BreakLine

 

Remarks

To show the break line, use the AddBreakLine Property.  To set the break line value, use the BreakValue Property.

 

Example 1

This example makes a line graph map's break line color red.

 

LineGraphMap.BreakLine.Color = mvColorRed

 

Example 2

This example changes the width of a line graph map's break line to 0.02.

 

LineGraphMap.BreakLine.Width = 0.02

 

Example 3

This example shows how to return the break line color.

 

Debug.Print LineGraphMap.BreakLine.Color

 

Used by: LineGraphMap object