System.Types.THorzRectAlign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

THorzRectAlign = (Center, Left, Right);

C++

enum class DECLSPEC_DENUM THorzRectAlign : unsigned char { Center, Left, Right };

Properties

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

Description

Specifies the horizontal alignment of a rectangle.

Use THorzRectAlign to specify the horizontal alignment of a rectangle within its parent. Set the AHorzAlign parameter of PlaceInto property to set the horizontal alignment of the rectangle.

THorzRectAlign can have the following values:

Value Meaning

Center

The rectangle is moved to the center of the designated area. Default value.

Left

The rectangle is moved to the left of the designated area.

Right

The rectangle is moved to the right of the designated area.

See Also