Programmatically Adjusting Zoom
To programmatically control the zoom level of a worksheet in ReoGrid, you can use the following methods:
sheet.ZoomIn(); // +0.1 scale factor
sheet.ZoomOut(); // -0.1 scale factor
sheet.ZoomReset(); // reset scale factor to 1

Set Scale Factor
To adjust the zoom level or scale factor of a worksheet in ReoGrid, use the SetScale method directly:
sheet.SetScale(2f, Point.Empty);

This method allows you to set the scale factor, effectively zooming in or out of the worksheet view. The first argument (2f in this example) specifies the scale factor, where 1f represents normal size, 2f doubles the size, 0.5f halves it, and so on.
The second argument of the SetScale method specifies the origin point of the scale transformation. Currently, this feature is reserved for future implementation and should be set to Point.Empty.
Zoom In/Out with Mouse
In ReoGrid, you can zoom in and out of a spreadsheet by holding the Ctrl key and using the mouse wheel. This built-in feature provides an intuitive way for users to control the zoom level of their spreadsheet view.
Disabling Mouse Wheel Zoom
If you need to disable the zoom functionality triggered by the mouse wheel, you can modify the worksheet settings. Specifically, set the Behavior_MouseWheelToZoom setting to false:
worksheet.SetSettings(WorksheetSettings.Behavior_MouseWheelToZoom, false);