Specifies the type of the corners of a rectangle.
TRSCornerType is used to customize the corner shapes.
Namespace: RSGraphics
Delphi
|
type
TRSCornerType = (
ctRound,
ctBevel,
ctInnerRound,
ctInnerLine);
|
|
Name
|
Description
|
|
ctBevel
|
The corner is beveled. A diagonal is displayed between the rectangle sides.
|
|
ctInnerLine
|
Three connected lines are displayed between the rectangle sides. The corner is oriented to the interior of the rectangle.
|
|
ctInnerRound
|
The corner is round. An arc oriented to the interior of the rectangle is displayed between the rectangle sides.
|
|
ctRound
|
The corner is round. An arc oriented to the exterior of the rectangle is displayed between the rectangle sides. The arc ends, on the rectangle sides, are defined by the specified horizontal XRadius and vertical YRadius distances from the rectangle corners.
|
Top
|