EllipseWidth

Description

The radius of the horizontal part of the corners of a RoundRectangle.

Applies to

RoundRectangle controls

Syntax

PowerBuilder dot notation:

dw_control.Object.rrectname.EllipseWidth

Describe and Modify argument:

"rrectname.EllipseWidth { = ' integer ' }"

Parameter

Description

rrectname

The name of the RoundRectangle control in the DataWindow for which you want to get or set the ellipse width.

integer

(exp) An integer specifying the radius of the horizontal part of the corners of a RoundRectangle in the DataWindow’s unit of measure. EllipseWidth can be a quoted DataWindow expression.

Usage


In the painter

Select the control and set the value in the Properties view, General tab.

Examples

Example 1

string setting

setting = dw1.Object.rrect_1.EllipseWidth

dw1.Object.rrect_1.EllipseWidth = 35

Example 2

setting = dw1.Describe("rrect_1.EllipseWidth")

dw1.Modify("rrect_1.EllipseWidth=35")

dw1.Modify("rrect_1.EllipseWidth='10~tIf(...,20,30)'")