TickPos Property
The TickPos property returns or sets state of linking the dependent axis tick position. Returns a Boolean.
Syntax
object.TickPos
object.TickPos = TickPos
Parameter | Type | Description |
TickPos | Boolean | required, True = axis tick position linked, False = axis tick position not linked |
Remarks
Enabling this setting automatically enables and disables other settings. Make sure to read the Link Axis and Axis Properties - Break Axis Page help topics to gain a full understanding of how Grapher applies this property.
Example 1
This example shows how to link the axis tick position.
'Define object pointer
Set YAxis2 = Graph1.Axes.Item(3)
'Set Link.TickPos
YAxis2.Link.TickPos = True
Example 2
This example shows how to return if the state if the axis tick position.
Debug.Print YAxis2.Link.TickPos
Used by: AutoAxisLink object