New to Telerik UI for WinUIStart a free 30-day trial

Document Rotation

Updated on Mar 26, 2026

The PdfViewer provides options for rotating the pages of the loaded document through the buttons in the toolbar.

WinUI RadPdfViewer

To rotate the document in code, use the SetRotationAngle method of RadPdfViewer or the commands of RotateClockwiseCommandDescriptor and RotateCounterClockwiseCommandDescriptor.

Rotate the document by using the SetRotationAngle method

C#
this.pdfViewer.SetRotationAngle(RotationAngle.Degrees180);      

Rotate the document by using the command descriptor

C#
this.pdfViewer.CommandDescriptors.RotateClockwiseCommandDescriptor.Command.Execute(null);

The current rotation angle can be accessed with the RotationAngle property of the RadPdfViewer.

Get the rotating angle

C#
RotationAngle angle = this.pdfViewer.RotationAngle;

See Also

In this article
See Also
Not finding the help you need?
Contact Support