public class Alignment(public val topRatio: Float)
Aligns the line within the space provided by the line height.
Members
Companion
public companion object
Properties
Top
public val Top: Alignment
Align the line to the top of the space reserved for that line. This means that all extra space as a result of line height is applied to the bottom of the line. When the provided line height value is smaller than the actual line height, the line will still be aligned to the top, therefore the required difference will be subtracted from the bottom of the line.
For example, when line height is 3.em, the lines are aligned to the top of 3.em height:
+--------+ | Line1 | | | | | |--------| | Line2 | | | | | +--------+
Center
public val Center: Alignment
Align the line to the center of the space reserved for the line. This configuration distributes additional space evenly between top and bottom of the line.
For example, when line height is 3.em, the lines are aligned to the center of 3.em height:
+--------+ | | | Line1 | | | |--------| | | | Line2 | | | +--------+
Proportional
public val Proportional: Alignment
Align the line proportional to the ascent and descent values of the line. For example if ascent is 8 units of length, and descent is 2 units; an additional space of 10 units will be distributed as 8 units to top, and 2 units to the bottom of the line. This is the default behavior.
Bottom
public val Bottom: Alignment
Align the line to the bottom of the space reserved for that line. This means that all extra space as a result of line height is applied to the top of the line. When the provided line height value is smaller than the actual line height, the line will still be aligned to the bottom, therefore the required difference will be subtracted from the top of the line.
For example, when line height is 3.em, the lines are aligned to the bottom of 3.em height:
+--------+ | | | | | Line1 | |--------| | | | | | Line2 | +--------+