API Documentation > CorelDRAW > 2025-v26 > Ellipse > IVGEllipse
Ellipse.CenterY property
Gets or sets the vertical ellipse center position
Syntax:
Property Get CenterY() As Double
Property Let CenterY(ByVal Value As Double)
Remarks:
The CenterY property returns or specifies the position of the y-coordinate for the center of an ellipse, arc, or pie. This is not the same as the geometrical center of the shape for an arc or a pie.
Examples:
The following VBA example moves the ellipse so that its center appears at the bottom side of the current page.
Sub Test()
ActiveShape.Ellipse.CenterY = 0 
End Sub