Show: Delphi
C++
Display Preferences
FMX.Types.AnchorAlign
From XE3 API Documentation
Delphi
AnchorAlign: array [TAlignLayout] of TAnchors = ( { alNone } [TAnchorKind.akLeft, TAnchorKind.akTop], { alTop } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight], { alLeft } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akBottom], { alRight } [TAnchorKind.akRight, TAnchorKind.akTop, TAnchorKind.akBottom], { alBottom } [TAnchorKind.akLeft, TAnchorKind.akRight, TAnchorKind.akBottom], { alMostTop } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight], { alMostBottom } [TAnchorKind.akLeft, TAnchorKind.akRight, TAnchorKind.akBottom], { alMostLeft } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akBottom], { alMostRight } [TAnchorKind.akRight, TAnchorKind.akTop, TAnchorKind.akBottom], { alClient } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alContents } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alCenter } [], { alVertCenter } [TAnchorKind.akLeft, TAnchorKind.akRight], { alHorzCenter } [TAnchorKind.akTop, TAnchorKind.akBottom], { vaHorizintal } [TAnchorKind.akLeft, TAnchorKind.akRight], { alVertical } [TAnchorKind.akTop, TAnchorKind.akBottom], { alScale } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alFit } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alFitLeft } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alFitRight } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom] );
C++
extern DELPHI_PACKAGE System::StaticArray<System::Uitypes::TAnchors, 20> AnchorAlign;
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| variable | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Variable that is an array of TAnchors.
AnchorAlign is initialized with an array containing all the declarations for all the possible align modes (alNone, alTop, alLeft, and so on), as follows:
( { alNone } [TAnchorKind.akLeft, TAnchorKind.akTop], { alTop } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight], { alLeft } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akBottom], { alRight } [TAnchorKind.akRight, TAnchorKind.akTop, TAnchorKind.akBottom], { alBottom } [TAnchorKind.akLeft, TAnchorKind.akRight, TAnchorKind.akBottom], { alMostTop } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight], { alMostBottom } [TAnchorKind.akLeft, TAnchorKind.akRight, TAnchorKind.akBottom], { alMostLeft } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akBottom], { alMostRight } [TAnchorKind.akRight, TAnchorKind.akTop, TAnchorKind.akBottom], { alClient } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alContents } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alCenter } [], { alVertCenter } [TAnchorKind.akLeft, TAnchorKind.akRight], { alHorzCenter } [TAnchorKind.akTop, TAnchorKind.akBottom], { vaHorizintal } [TAnchorKind.akLeft, TAnchorKind.akRight], { alVertical } [TAnchorKind.akTop, TAnchorKind.akBottom], { alScale } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alFit } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alFitLeft } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom], { alFitRight } [TAnchorKind.akLeft, TAnchorKind.akTop, TAnchorKind.akRight, TAnchorKind.akBottom] );
AnchorAlign is used internally for aligning procedures.