Draws a black circle or ellipse on a printer at the current draw location.
Syntax
'Declaration
Public Overloads Sub Circle( _
ByVal As Integer, _
ByVal As Single _
)
'Usage
Dim instance As Draw
Dim radius As Integer
Dim aspectRatio As Single
instance.Circle(radius, aspectRatio)
Parameters
- radius
- An integer value which represents the radius of the circle or ellipse.
- aspectRatio
- A single value which represents the aspect ratio of the circle. The value 1.0 yields a perfect (non-elliptical) circle on any screen. A negative aspect ratio will yield a perfect circle.
See Also