LimitsEquation Property
The LimitsEquation property returns or sets the equation used to link axis limits when the axis is linked. Returns a String.
Syntax
object.LimitsEquation
object.LimitsEquation = LimitsEquation
Parameter | Type | Description |
LimitsEquation | String | required, Equation describing how axis limits are linked |
Example 1
This example shows how to set the axis limits to linked and set the limits equation.
AxisLink.Limits = True
AxisLink.LimitsEquation = "(X-32)*5/9"
Example 2
This example shows how to return the axis limits equation, when linked.
Debug.Print AxisLink.LimitsEquation
Used by: AutoAxisLink object