Example #1
0
 /// <summary>
 /// Its enables eraser mode after that whenever user drags on screen this will erase the existing paint
 /// <b>Note</b> : This eraser will work on paint views only
 /// </summary>
 public void BrushEraser()
 {
     try
     {
         BrushDrawingView?.BrushEraser();
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
 }