IsAutoMinorDTSpacingAfterBreak
The IsAutoMinorDTSpacingAfterBreak method returns the state of the minor date/time tick division after the break pointed to by breakIndex in the break list. Returns a Boolean.
Syntax
object.IsAutoMinorDTSpacingAfterBreak ( breakIndex )
Parameter | Type | Description |
breakIndex | Integer | required, the position of the break in the break list; the break list index starts at 1 |
Remarks
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 state of the minor date/time tick spacing after the second break in the break list
Debug.Print XAxis1.AxisBreak.IsAutoMinorDTSpacingAfterBreak(2)
Example 2
This example shows how to test the condition of the state of the minor date/time tick spacing after the first break in the break list.
If XAxis1.AxisBreak.IsAutoMinorDTSpacingAfterBreak(1)
Then
' (put your code here that will execute if the condition is true)
End If
Used by: AutoBreakAxis object