System.UITypes.TAnchorKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TAnchorKind = (akLeft, akTop, akRight, akBottom);

C++

enum class DECLSPEC_DENUM TAnchorKind : unsigned char { akLeft, akTop, akRight, akBottom };

Properties

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

Description

TAnchorKind specifies how a control is anchored to its parent.

TAnchorKind can have the following values:

Value Meaning

akTop

The design-time distance between the top edge of the control's parent and the top edge of the control is maintained constant.

akLeft

The design-time distance between the left edge of the control's parent and the left edge of the control is maintained constant.

akRight

The design-time distance between the right edge of the control's parent and the right edge of the control is maintained constant.

akBottom

The design-time distance between the bottom edge of the control's parent and the bottom edge of the control is maintained constant.

See Also