Skip to content

Instantly share code, notes, and snippets.

@brunomlopes
Created January 7, 2015 10:11
Show Gist options
  • Save brunomlopes/97ed26932f39234f6476 to your computer and use it in GitHub Desktop.
Save brunomlopes/97ed26932f39234f6476 to your computer and use it in GitHub Desktop.
Visual Studio presenter utils
# Changes the font size for the text editor. Very useful when presenting, to make it bigger
function Set-FontSize {
param(
[ValidateRange(6, 128)]
[Parameter(position=0, mandatory=$true)]
[int]$Size
)
$dte.Properties("FontsAndColors", "TextEditor").Item("FontSize").Value = $Size
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment