Hallo,
Anchors ist ein Feld bzw. ein "set of":
Auszug aus der Controls.pas:
Delphi-Quellcode:
TAnchorKind = (akLeft, akTop, akRight, akBottom);
TAnchors = set of TAnchorKind;
Im
OI kannst du übrigens meist abgucken, wie man das zuweist.
Panel1.Anchors := [akLeft,akTop];
Grüße
Edit: Auszug ergänzt.