File tree Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -12,20 +12,55 @@ public interface IElement
12
12
/// </summary>
13
13
int ElementId { get ; }
14
14
}
15
-
15
+ /// <summary>
16
+ /// Represents the indentation settings for a paragraph.
17
+ /// </summary>
16
18
public class Indentation
17
19
{
20
+ /// <summary>
21
+ /// Gets or sets the distance of the left indentation.
22
+ /// </summary>
18
23
public double Left { get ; set ; }
24
+
25
+ /// <summary>
26
+ /// Gets or sets the distance of the right indentation.
27
+ /// </summary>
19
28
public double Right { get ; set ; }
29
+
30
+ /// <summary>
31
+ /// Gets or sets the distance of the first line indentation.
32
+ /// </summary>
20
33
public double FirstLine { get ; set ; }
34
+
35
+ /// <summary>
36
+ /// Gets or sets the distance of the hanging indentation.
37
+ /// </summary>
21
38
public double Hanging { get ; set ; }
22
39
}
23
40
41
+ /// <summary>
42
+ /// Specifies the alignment of a paragraph within a text block or document.
43
+ /// </summary>
24
44
public enum ParagraphAlignment
25
45
{
46
+ /// <summary>
47
+ /// Aligns the paragraph to the left.
48
+ /// </summary>
26
49
Left ,
50
+
51
+ /// <summary>
52
+ /// Centers the paragraph within the available space.
53
+ /// </summary>
27
54
Center ,
55
+
56
+ /// <summary>
57
+ /// Aligns the paragraph to the right.
58
+ /// </summary>
28
59
Right ,
60
+
61
+ /// <summary>
62
+ /// Justifies the text within the paragraph, aligning both the left and right edges.
63
+ /// </summary>
29
64
Justify
30
65
}
31
66
You can’t perform that action at this time.
0 commit comments