123456789101112131415161718192021222324 |
- using FastReport.Utils;
- using System.Drawing;
- namespace FastReport
- {
- partial class PictureObjectBase
- {
- /// <summary>
- /// Does nothing
- /// </summary>
- /// <param name="g"></param>
- /// <param name="e"></param>
- protected void DrawErrorImage(IGraphics g, FRPaintEventArgs e)
- {
- }
- /// <summary>
- /// Does nothing
- /// </summary>
- /// <param name="e"></param>
- partial void DrawDesign(FRPaintEventArgs e);
- }
- }
|