LengthScale Property

The LengthScale property returns or sets the scale factor for axis length when the axis is linked. Returns a Double.

Syntax

object.LengthScale

object.LengthScale = LengthScale

 

Parameter Type Description
LengthScale Double required, Multiplier for axis length linking. If 2, linked axis is twice as long. If 0.5, axis is half as long.

 

Example 1

This example shows how to set the axis length to linked and set the length twice the controlling axis.

AxisLink.length = True

AxisLink.LengthScale = 2

Example 2

This example shows how to return the axis length scale, when linked.

Debug.Print AxisLink.LengthScale

 

Used by: AutoAxisLink object