You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// An enumeration with all possible text alignments.
5
+
/// </summary>
6
+
publicenumTextAlign:byte
7
+
{
8
+
/// <summary>
9
+
/// The inline contents are aligned to the left edge of the line box.
10
+
/// This is the default value for table data.
11
+
/// </summary>
12
+
Left,
13
+
/// <summary>
14
+
/// The inline contents are centered within the line box. This is
15
+
/// the default value for table headers.
16
+
/// </summary>
17
+
Center,
18
+
/// <summary>
19
+
/// The inline contents are aligned to the right edge of the line box.
20
+
/// </summary>
21
+
Right,
22
+
/// <summary>
23
+
/// The text is justified. Text should line up their left and right
24
+
/// edges to the left and right content edges of the paragraph.
25
+
/// </summary>
26
+
Justify,
27
+
/// <summary>
28
+
/// The same as left if direction is left-to-right and right if direction is right-to-left.
29
+
/// </summary>
30
+
Start,
31
+
/// <summary>
32
+
/// The same as right if direction is left-to-right and left if direction is right-to-left.
33
+
/// </summary>
34
+
End,
35
+
/// <summary>
36
+
/// Same as justify, but also forces the last line to be justified.
37
+
/// </summary>
38
+
JustifyAll,
39
+
/// <summary>
40
+
/// Similar to inherit, but the values start and end are calculated according to the parent's direction and are replaced by the appropriate left or right value.
0 commit comments