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