Visible: Boolean;
The Visible property determines whether an arrow is visible.
Available values:
True. Default value. The arrow will be displayed on the map.
False. The arrow will not be displayed on the map.
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(0) As 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: