Vcl.Bind.Navigator.TBindNavigator.Anchors

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Anchors: TAnchors read FAnchors write SetAnchors stored IsAnchorsStored default 3;

C++

__property Anchors = {default=3};

Properties

Type Visibility Source Unit Parent
property published
Vcl.Bind.Navigator.pas
Vcl.Bind.Navigator.hpp
Vcl.Bind.Navigator TBindNavigator

Description


Specifies how the control is anchored to its parent.

Vcl.Bind.Navigator.TBindNavigator.Anchors inherits from Vcl.Controls.TControl.Anchors. All content below this line refers to Vcl.Controls.TControl.Anchors.

Specifies how the control is anchored to its parent.

Use Anchors to ensure that a control maintains its current position relative to an edge of its parent, even if the parent is resized. When its parent is resized, the control holds its position relative to the edges to which it is anchored.

If a control is anchored to opposite edges of its parent, the control stretches when its parent is resized. For example, if a control has its Anchors property set to [akLeft, akRight], the control stretches when the width of its parent changes.

Anchors is enforced only when the parent is resized. Thus, for example, if a control is anchored to opposite edges of a form at design time and the form is created in a maximized state, the control is not stretched because the form is not resized after the control is created.

Note: If a control should maintain contact with three edges of its parent (hugging one side of the parent and stretching the length of that side), use the Align property instead. Unlike Anchors, Align allows controls to adjust to changes in the size of other aligned sibling controls as well as changes to the parent's size.

See Also