PageRotate Property
Gets or sets rotation of the page.

Namespace: Aspose.Pdf
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public Rotation Rotate { get; set; }

Property Value

Type: Rotation
Examples
Example demonstrates how to determine page rotation.
C#
Document document = new Document("sample.pdf");
Console.WriteLine(document.Pages[1].Rotate);
See Also