Specifies how an object is aligned with respect to its parent. This property specifies which baseline of this element is to be aligned with the corresponding baseline of the parent. For example, this allows alphabetic baselines in Roman text to stay aligned across font size changes.
Note
|
Currently, auto is the only alignment baseline supported
|
Namespace: FMX.RS.SVGTypes
Delphi
|
type
TSVGAlignmentBaseline = (abNone,
abAuto,
abBaseline,
abBeforeEdge,
abTextBeforeEdge,
abMiddle,
abCentral,
abAfterEdge,
abTextAfterEdge,
abIdeographic,
abAlphabetic,
abHanging,
abMathematical
);
|
|
Name
|
Description
|
|
abAfterEdge
|
The alignment-point of the object being aligned is aligned with the "after-edge" baseline of the parent text content element.
|
|
abAlphabetic
|
The alignment-point of the object being aligned is aligned with the "alphabetic" baseline of the parent text content element.
|
|
abAuto
|
The value is the dominant-baseline of the script to which the character belongs - i.e., use the dominant-baseline of the parent.
|
|
abBaseline
|
The alignment-point of the object being aligned is aligned with the dominant-baseline of the parent text content element.
|
|
abBeforeEdge
|
The alignment-point of the object being aligned is aligned with the "before-edge" baseline of the parent text content element.
|
|
abCentral
|
The alignment-point of the object being aligned is aligned with the "central" baseline of the parent text content element.
|
|
abHanging
|
The alignment-point of the object being aligned is aligned with the "hanging" baseline of the parent text content element.
|
|
abIdeographic
|
The alignment-point of the object being aligned is aligned with the "ideographic" baseline of the parent text content element.
|
|
abMathematical
|
The alignment-point of the object being aligned is aligned with the "mathematical" baseline of the parent text content element.
|
|
abMiddle
|
The alignment-point of the object being aligned is aligned with the "middle" baseline of the parent text content element.
|
|
abNone
|
Represents constant abNone.
|
|
abTextAfterEdge
|
The alignment-point of the object being aligned is aligned with the "text-after-edge" baseline of the parent text content element.
|
|
abTextBeforeEdge
|
The alignment-point of the object being aligned is aligned with the "text-before-edge" baseline of the parent text content element.
|
Top
|