System.Types.TVertRectAlign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVertRectAlign = (Center, Top, Bottom);

C++

enum class DECLSPEC_DENUM TVertRectAlign : unsigned char { Center, Top, Bottom };

Properties

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

Description

Specifies the vertical alignment of a rectangle.

Use TVertRectAlign to specify the vertical alignment of a rectangle within its parent. Set the AVertAlign parameter of the PlaceInto property to set the vertical alignment of the rectangle.

TVertRectAlign can have the following values:

Value Meaning

Center

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

Top

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

Bottom

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

See Also