ShapePolygon.Core.cs 499 B

123456789101112131415161718192021
  1. using FastReport.Utils;
  2. using System.Drawing;
  3. namespace FastReport.Map
  4. {
  5. partial class ShapePolygon
  6. {
  7. #region Private Methods
  8. /// <summary>
  9. /// Does nothing
  10. /// </summary>
  11. /// <param name="e"></param>
  12. /// <param name="brush"></param>
  13. /// <param name="flag"></param>
  14. /// <returns>flag</returns>
  15. partial void DrawDesign(FRPaintEventArgs e, ref Brush brush, ref bool flag);
  16. #endregion Private Methods
  17. }
  18. }