IWxRoundedRectangle.RoundingOffset

Syntax

RoundingOffset: Double;

Description

The RoundingOffset property determines offset for rectangle corner rounding. Acceptable values should be within the range [0,15].

Example

Executing the example requires an existing ws object of the IWxWorkspace type.

Sub UserProc;

Var

ws: IWxWorkspace;

RR : IWxRoundedRectangle;

Begin

RR := ws.Shapes.FindById("Shape 6") As IWxRoundedRectangle;

RR.RoundingOffset := 8;

End Sub UserProc;

After executing the example rectangle corners' rounding is changed.

See also:

IWxRoundedRectangle