Skip to content

Commit 9c15069

Browse files
committed
Added missing xml comments
1 parent ed80c20 commit 9c15069

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
11
namespace Synercoding.FileFormats.Pdf;
22

3+
/// <summary>
4+
/// Enum representing the rotations a page can have
5+
/// </summary>
36
public enum PageRotation
47
{
8+
/// <summary>
9+
/// No rotation
10+
/// </summary>
511
Rotation0 = 0,
12+
13+
/// <summary>
14+
/// Rotate 90 degrees
15+
/// </summary>
616
Rotation90 = 90,
17+
18+
/// <summary>
19+
/// Rotate 180 degrees
20+
/// </summary>
721
Rotation180 = 180,
22+
23+
/// <summary>
24+
/// Rotate 270 degrees
25+
/// </summary>
826
Rotation270 = 270
927
}

0 commit comments

Comments
 (0)