Vcl.ExtCtrls.TShapeType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TShapeType = (stRectangle, stSquare, stRoundRect, stRoundSquare,
stEllipse, stCircle);

C++

enum DECLSPEC_DENUM TShapeType : unsigned char { stRectangle, stSquare, stRoundRect, stRoundSquare, stEllipse, stCircle };

Properties

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

Description

TShapeType determines the shape of a TShape control.

These are the possible values of the TShapeType type:



Value Meaning

stCircle

The shape is a circle.

stEllipse

The shape is an ellipse.

stRectangle

The shape is a rectangle. (Default)

stRoundRect

The shape is a rectangle with rounded corners.

stRoundSquare

The shape is a square with rounded corners.

stSquare

The shape is a square.