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