A new property of Anchors has been added to all 78 form controls in R:BASE 7.1, update 74 and higher. We are sure you'll appreciate the Anchor properties given to all controls. For those who are not familiar with the Anchors, they actually allow you to anchor the edges of controls to the right or bottom edge of a form. So when the form resizes, the Left/Width and/or Top/Height properties automatically adjust.
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 [Left, Right], the control stretches when the width of its parent changes.
Anchors is enforced only when the parent is resized. Thus, if a control is anchored to the 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.
To access this new property/feature while in form designer, right-click on any control and select Anchors.
In summary, this feature specifies how the control is anchored to its parent and provides us with nice features for resizing and aligning controls.