FMX.Types.TSide

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TSide = (Top, Left, Bottom, Right);

C++

enum class DECLSPEC_DENUM TSide : unsigned int { Top, Left, Bottom, Right, sdTop _DEPRECATED_ATTRIBUTE3("Use TSide.Top")  = 0, sdLeft _DEPRECATED_ATTRIBUTE3("Use TSide.Left")  = 1, sdBottom _DEPRECATED_ATTRIBUTE3("Use TSide.Bottom")  = 2, sdRight _DEPRECATED_ATTRIBUTE3("Use TSide.Right")  = 3 };

Properties

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

Description

Specifies the sides of a rectangle to be displayed.

TSide is used to draw the sides of a customized rectangle.

Use TSides to select a set of TSide values. To select all the sides, use AllSides.

TSide can have the following values:

Value Meaning

Top

The upper side.

Left

The left side.

Bottom

The lower side.

Right

The right side.

See Also