Exemplo n.º 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);
     }
 }
Exemplo n.º 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);
     }
 }