TickLine Property
TickLine returns the line format object for the graticule tick mark lines. Returns a LineFormat object. This is a read-only property.
Syntax
object. TickLine
Example 1
This example demonstrates how to return the line color of the graticule tick marks. Note that the Color property cannot be used to return a value.
Debug.Print Graticule.TickLine.ForeColorRGBA.Red
Debug.Print Graticule.TickLine.ForeColorRGBA.Green
Debug.Print Graticule.TickLine.ForeColorRGBA.Blue
Debug.Print Graticule.TickLine.ForeColorRGBA.Alpha
Example 2
This example demonstrates how to change the line color of the graticule tick mark lines to brown.
Graticule.TickLine.ForeColorRGBA.Color = srfColorBrown
Used by: Graticule Object