Skip to content

Instantly share code, notes, and snippets.

@mdelanno
Created November 23, 2023 07:59
Show Gist options
  • Save mdelanno/0dd11b974b263d260b4153f4343808a6 to your computer and use it in GitHub Desktop.
Save mdelanno/0dd11b974b263d260b4153f4343808a6 to your computer and use it in GitHub Desktop.
Set the zoom to 100% in a SpreadSheetLight worksheet
SLPageSettings settings = document.GetPageSettings()!;
settings.ZoomScale = 100;
document.SetPageSettings(settings);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment