Descending Property
The Descending property returns or sets the axis descending property. Returns a Boolean.
Syntax
object.Descending
object.Descending = Descending
Parameter | Type | Description |
Descending | Boolean | required, true to create a descending axis |
Remarks
The Descending property also controls the ternary axis rotation. When one axis is specified, the other axes automatically update. The following table lists the Descending values for default and rotated ternary axes.
Axis | Default | Rotated |
X | False | True |
Y | True | False |
Z | True | False |
Example 1
This example shows how to set the X axis to descending.
Axis.Descending = True
Example 2
This example shows how to return if the X axis is descending.
Debug.Print Axis.Descending
Used by: AutoAxis object