BandBase.Core.cs 321 B

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