I would like to draw node.. How to draw solid node?
Quote:
picView.Circle (XY(TIN.Node1, 0), XY(TIN.Node1, 1)), 15, vbRed
Printable View
I would like to draw node.. How to draw solid node?
Quote:
picView.Circle (XY(TIN.Node1, 0), XY(TIN.Node1, 1)), 15, vbRed
from msdn
Quote:
Remarks
To fill a circle, set the FillColor and FillStyle properties of the object on which the circle or ellipse is drawn. Only a closed figure can be filled. Closed figures include circles, ellipses, or pie slices (arcs with radius lines drawn at both ends).
Ok, I create a circle using code.. I understand it, but how to fill the circle using code?
Code:Private Sub Form_Load()
'Set the FillStyle and FillColor for the object you are drawing on
picView.FillStyle = vbSolid
picView.FillColor = vbRed
picView.AutoRedraw = True
picView.Circle (500, 500), 100, vbRed
End Sub