Created
January 7, 2015 10:11
-
-
Save brunomlopes/97ed26932f39234f6476 to your computer and use it in GitHub Desktop.
Visual Studio presenter utils
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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