IMap.Color

Syntax

Color: IGxColor;

Description

The Color property determines map background color. When setting the map background color the background becomes transparent.

Example

The example requires the Map object of the IMap type.

Add links to the Drawing and Map system assemblies.

Sub Color;
Var
    Map : IMap;
Begin
    Map.Color := New GxColor.CreateARGB(128,28,128,128);
End Sub Color;

After executing the example the map background color turns into the transparent green.

See also:

IMap