MapObject.Core.cs 345 B

12345678910111213141516
  1. using FastReport.Utils;
  2. using System.Drawing;
  3. namespace FastReport.Map
  4. {
  5. partial class MapObject
  6. {
  7. /// <inheritdoc/>
  8. public override void Draw(FRPaintEventArgs e)
  9. {
  10. base.Draw(e);
  11. DrawMap(e);
  12. Border.Draw(e, new RectangleF(AbsLeft, AbsTop, Width, Height));
  13. }
  14. }
  15. }