New to Telerik UI for WPF? Download free 30-day trial

Zoom In or Out a Worksheet

This article describes how you can change the zoom level of the Worksheet, which helps to take a close-up view of your Worksheet or to zoom out to see more of the page at a reduced size.

In order to do so there are two different approaches available: Using UI or Programmatically.

Using UI

On the status bar of the RadSpreadsheet app, move the zoom scale slider or click the '-' (minus) or '+' (plus) button to zoom in gradual increments.

Zoom scale slider

The particular zoom setting is preserved when save/export the Worksheet.

Programmatically

By using the RadWorksheetEditor`s ScaleFactor property. The default value for the width and the height of the ScaleFactor is 1.

Example 1: Zoom in

this.radSpreadsheet.ActiveWorksheetEditor.ScaleFactor = new Size(2, 2); 

Example 1: Zoom out

this.radSpreadsheet.ActiveWorksheetEditor.ScaleFactor = new Size(0.5, 0.5); 
In this article