We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed80c20 commit 9c15069Copy full SHA for 9c15069
src/Synercoding.FileFormats.Pdf/PageRotation.cs
@@ -1,9 +1,27 @@
1
namespace Synercoding.FileFormats.Pdf;
2
3
+/// <summary>
4
+/// Enum representing the rotations a page can have
5
+/// </summary>
6
public enum PageRotation
7
{
8
+ /// <summary>
9
+ /// No rotation
10
+ /// </summary>
11
Rotation0 = 0,
12
+
13
14
+ /// Rotate 90 degrees
15
16
Rotation90 = 90,
17
18
19
+ /// Rotate 180 degrees
20
21
Rotation180 = 180,
22
23
24
+ /// Rotate 270 degrees
25
26
Rotation270 = 270
27
}
0 commit comments