34,333
edits
Changes
→Drawing Text in Visual Basic
[[Image:vb_draw_text.jpg]]
== Clearing a Drawing Area ==
A drawing area may be cleared using any color via the Visual Basic Graphics object ''Clear()'' method as follows:
<pre>
e.Graphics.Clear(Color.White)
</pre>
== Summary ==
This chapter is intended to provide a basic grounding in Graphics drawing in Visual Basic. The area of graphics drawing is vast and it is impossible to cover everything in a single chapter. Hopefully enough has been covered hear to give you the confidence to experiment and learn more.