/// <summary> /// Replace this event when creating a custom descendant of FlexCelImgExport. /// </summary> /// <param name="e"></param> protected virtual void OnAfterPaint(ImgPaintEventArgs e) { if (AfterPaint != null) { AfterPaint(this, e); } }
/// <summary> /// Replace this event when creating a custom descendant of FlexCelImgExport. /// </summary> /// <param name="e"></param> protected virtual void OnBeforePaint(ImgPaintEventArgs e) { if (BeforePaint != null) { BeforePaint(this, e); } }