FMX.Types.TCorner

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCorner = (TopLeft, TopRight, BottomLeft, BottomRight);

C++

enum class DECLSPEC_DENUM TCorner : unsigned int { TopLeft, TopRight, BottomLeft, BottomRight };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

TCorner values identify the corners of a rectangle.

A TCorner value is used to specify the corner to be customized.

TCorner defines the following values:

Value Meaning

TopLeft

Identifies the upper-left corner of the rectangle.

TopRight

Identifies the upper-right corner.

BottomLeft

Identifies the lower-left corner.

BottomRight

Identifies the lower-right corner.


Use TCorners values to select a set of corners in a rectangle.

Use AllCorners to select all four corners.

See Also