Badr
Badr

Reputation: 10648

how to clear a graphic object without using clear() method in c#?

is it possible to clear the graphic object without a clear method?

Upvotes: 1

Views: 305

Answers (1)

Marc Gravell
Marc Gravell

Reputation: 1062770

Well, you could use FillRectangle / FillRegion, but Clear() is the obvious choice here.

Upvotes: 2

Related Questions