| Author |
Draw dotted Rect
|
Sarone Thach
Ranch Hand
Joined: Jun 25, 2003
Posts: 89
|
|
Hi there, The Graphics class has a drawRect method. Does it have a method that will draw a rectangle but with dotted lines? thanks, Sarone
|
 |
Nathan Pruett
Bartender
Joined: Oct 18, 2000
Posts: 4121
|
|
Not Graphics, but Graphics2D does... As long as you're using any version of the JDK newer than 1.2 you can just cast the Graphics parameter of the paint() method to a Graphics2D object.
|
-Nate
Write once, run anywhere, because there's nowhere to hide! - /. A.C.
|
 |
Sarone Thach
Ranch Hand
Joined: Jun 25, 2003
Posts: 89
|
|
|
Perfect! Thank you so much Nate.
|
 |
 |
|
|
subject: Draw dotted Rect
|
|
|