In VB.NET, I draw an ellipse using such code.
aPen = New Pen(Color.Black) g.DrawEllipse(aPen, n.boxLeft, n.boxTop, n.getWidth(), n.getHeight)
But I want to set the line thickness. How can I do it? Is this a Pen property or an argument to the DrawEllipse method?
(NB: For some reason, VisualStudio's help didnβt bring me down, so I donβt care to hit the network anyway. I think I will try here first.)
source share