Description
The radius of the vertical part of the corners of a RoundRectangle.
Applies to
RoundRectangle controls
Syntax
PowerBuilder dot notation:
dw_control.Object.rrectname.EllipseHeight
Describe and Modify argument:
"rrectname.EllipseHeight { = ' integer ' }"
Parameter |
Description |
---|---|
rrectname |
The name of the RoundRectangle control in the DataWindow for which you want to get or set the ellipse height. |
integer |
(exp) An integer specifying the radius of the vertical part of the corners of a RoundRectangle in the DataWindow's unit of measure. EllipseHeight can be a quoted DataWindow expression. |
Usage
In the painter
Select the control and set the value in the Properties view, General tab.
Examples
string setting setting = dw1.Object.rrect_1.EllipseHeight dw1.Object.rrect_1.EllipseHeight = 35 setting = dw1.Describe("rrect_1.EllipseHeight") dw1.Modify("rrect_1.EllipseHeight=35") dw1.Modify("rrect_1.EllipseHeight='10~tIf(...,20,30)'")