Beispiel #1
0
 /// <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);
     }
 }
Beispiel #2
0
 /// <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);
     }
 }