VAligns
FormatProperties
.
VAlign
Vertical cell and canvas alignment options.
Sets the default vertical alignment for all children. The container must have its height
specified.
None
Top
Center
Baseline
Bottom
Example
=
HBox
(
null
,
null
) {
VAlign
:
Top
;
Separation
:
10;
Container
(
"A"
,
VAligns
.
Top
);
Container
(
"x"
,
VAligns
.
Center
);
Container
(
"q"
,
VAligns
.
Baseline
);
Container
(
"j"
,
VAligns
.
Bottom
);
};
A
Top
x
Center
q
Baseline
j
Bottom