Angle: Double;
The Angle property determines arrow bend angle. The allowed values lie within the range [0;90) or [0; -90).
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.CreateByIDs(98,46);
Arrow.Color:= GxColor.FromName("Red");
Arrow.Angle := 30;
Map.Refresh;
End Sub Arrow;
After executing the example the arrow with the specified color and bend is created:
See also: