J
Jon
Hello all,
I'm drawing a rectangle on a Form with the below code:
Graphics g = Graphics.FromImage(imgBox.Image);
g.DrawRectangle(new Pen(Color.Red, 1), startX, startY, width, height);
This works fine and draws the rectangle. My questions is, is it
possible to somehow then remove this rectangle?
Thanks all.
JY
I'm drawing a rectangle on a Form with the below code:
Graphics g = Graphics.FromImage(imgBox.Image);
g.DrawRectangle(new Pen(Color.Red, 1), startX, startY, width, height);
This works fine and draws the rectangle. My questions is, is it
possible to somehow then remove this rectangle?
Thanks all.
JY