c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
16 lines
262 B
Text
16 lines
262 B
Text
Public Sub Example13()
|
|
|
|
Paint.MoveTo(50, 75)
|
|
Paint.LineTo(200, 75)
|
|
|
|
Paint.MoveTo(50, 125)
|
|
Paint.LineTo(200, 125)
|
|
|
|
Paint.MoveTo(50, 175)
|
|
Paint.LineTo(200, 175)
|
|
|
|
Paint.LineWidth = 30
|
|
Paint.LineCap = Paint.LineCapRound
|
|
Paint.Stroke
|
|
|
|
End
|