Last active
December 15, 2015 01:29
-
-
Save trampster/5180275 to your computer and use it in GitHub Desktop.
This file contains 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
var subscriptTag = new TextTag("SuperScript"); | |
//make the font smaller | |
subscriptTag.SizePoints = (baseFontSize/2); | |
//turn on the Rise settings | |
subscriptTag.RiseSet = true; | |
//move down | |
subscriptTag.Rise = -(baseFontSize / 4) * 1024; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment