ShowOverlays Property

ShowOverlays returns or sets the flag to show overlays on a surface. Multiple layers can be combined into a single composite map, and the ShowOverlays property allows the overlays to be displayed on an individual basis. It has a Boolean value. If the value is set to 'True', the overlays are shown and if the value is set to 'False', the overlays are hidden.

Syntax

object.ShowOverlays

object. ShowOverlays = Show

Parameter

Type

Description

Show

Boolean

required

Example 1

This example shows how to return whether or not the overlays are displayed.

Debug.Print "ShowOverlays = "; SurfaceMap.ShowOverlays

Example 2

This example shows how to hide the overlays.

SurfaceMap.ShowOverlays= False

Used by: Surface object

See Also

Overlays