The CreateMapCollar method creates a map collar. The map collar properties can be edited through the returned Collar object.
Syntax
object.CreateMapCollar( ShowInnerTicks, ShowOuterTicks )
Parameter |
Type |
Description |
ShowInnerTicks |
Boolean |
required; true to show inner ticks |
ShowOuterTicks |
Boolean |
required; true to show outer ticks |
Example
'CreateMapCollar
'Create a map collar with only outer tick marks and assign it to the variable "CollarMap"
Set CollarMap = Plot.CreateMapCollar(ShowInnerTicks:=False, ShowOuterTicks:=True)
Used by: PlotDocument object