Vcl.Forms.TRoundedCornerType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TRoundedCornerType = (
rcDefault,
rcOff,
rcOn,
rcSmall
);

C++

enum DECLSPEC_DENUM TRoundedCornerType : unsigned char { rcDefault, rcOff, rcOn, rcSmall };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms Vcl.Forms

Description

TRoundedCornerType is used by the form RoundedCorners property and DefaultRoundedCorners class property.

Below you can find a list of possible values for the TRoundedCornerType type:

  • rcDefault: Windows default or global app setting.
  • rcOff: Rounded corners disabled.
  • rcOn: Rounded corners active.
  • rcSmall: Rounded corners active, but with a small radius.

See Also