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

Keyboard Support

Updated on Mar 26, 2026

The PdfViewer allows you to interact with the PDF document by using the keyboard.

The utilization of the predefined key bindings can entirely replace the usage of the mouse by providing shortcuts for navigation and editing.

Shortcuts

The PdfViewer supports the following keyboard shortcuts:

HotkeyAction
Ctrl + CCopy the content.
Ctrl + ASelect all of the content.
Left ArrowMove the caret to the previous position.
Right ArrowMove the caret to the next position.
Ctrl + Left ArrowMove the caret to the previous word.
Ctrl + Right ArrowMove the caret to the next word.
Up ArrowMove the caret to the previous line.
Down ArrowMove the caret to the next line.
HomeMove the caret to the line start.
EndMove the caret to the line end.
Ctrl + HomeMove the caret to the start of the document.
Ctrl + EndMove the caret to the end of the document.
Shift + Arrow keysSelect the text.

Adding Custom Key Binding

To add a custom key action, use the KeyBindings collection property of the RadPdfViewer.

Execute a Save As command on Ctrl+S

C#
ICommand command = this.pdfViewer.CommandDescriptors.SaveAsCommandDescriptor.Command;
var keyboardAccelerator = new KeyboardAcceleratorWithCommand(command)
{
	Key = VirtualKey.S,
	Modifiers = VirtualKeyModifiers.Control
};
this.pdfViewer.KeyBindings.Add(keyboardAccelerator);

See Also