IMapArrow.Visible

Syntax

Visible: Boolean;

Description

The Visible property determines whether an arrow is visible.

Comments

Available values:

Example

The module is connected to the regular report, which sheet contains the map.

Add links to the Map, Report, Tab system assemblies.

Sub Arrow;
Var
    Sheets: IPrxSheets;
    SheetT : IPrxTable;
    Map : IMap;
    Arrow : IMapArrow;
Begin
    Sheets := PrxReport.ActiveReport.Sheets;
    SheetT := Sheets.Item(0As  IPrxTable;
    Map := SheetT.TabSheet.Objects.Item(0).Extension As IMap;
    Arrow := Map.Layers.FindByName("Regions").Arrows.Item(1);
    Arrow.Visible := False;
    Map.Refresh;
End Sub Arrow;

After executing the example the arrow is displayed on the map.

See also:

IMapArrow