Gets or sets rotation of the page.
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxpublic Rotation Rotate { get; set; }
Public Property Rotate As Rotation
Get
Set
public:
property Rotation Rotate {
Rotation get ();
void set (Rotation value);
}
member Rotate : Rotation with get, set
Property Value
Type:
Rotation
Examples
Example demonstrates how to determine page rotation.
Document document = new Document("sample.pdf");
Console.WriteLine(document.Pages[1].Rotate);
See Also