Visible: Boolean;
The Visible property determines whether an arrow is visible. In case the property value is True, the arrow is displayed on the map, in case the value is False, the arrow is not displayed.
The property is set to True by default.
The module is connected to the regular report, which sheet contains the map.
Sub Arrow;
Var
Map : IMap;
Arrow : IMapArrow;
Begin
Map := PrxReport.ActiveReport.ActiveSheet.Table.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: