FillTransparent Property

The FillTransparent property returns or sets the background transparency mode for a contour map color map. It has a Boolean value. If this value is set to 'True', the background is transparent.

Syntax

object. FillTransparent

object. FillTransparent = FillTransparent

Parameter

Type

Description

FillTransparent

Boolean

required

Remarks

After setting the FillTransparent, the script must still apply the fill change. Use the ApplyFilltoLevels command to apply changes.

Example 1

This example demonstrates how to return whether or not the background fill is transparent.

Debug.Print ContourLayer.FillTransparent

Example 2

This example demonstrates how to make the background fill transparent.

ContourLayer.FillTransparent = True

Used by: ContourLayer Object