API Documentation > CorelDRAW > 2025-v26 > Ellipse > IVGEllipse
Ellipse.VRadius property
Gets or sets the vertical ellipse radius
Syntax:
Property Get VRadius() As Double
Property Let VRadius(ByVal Value As Double)
Remarks:
The VRadius property returns or specifies the vertical radius of an ellipse. The VRadius property does not take object rotation into account; thus, an ellipse that is rotated 90° returns the same vertical radius as the ellipse before the rotation.
Examples:
The following VBA example sets the vertical radius of the selected ellipse to 1".
Sub Test()
ActiveShape.Ellipse.VRadius = 1 
End Sub