Created
July 12, 2011 22:48
-
-
Save lucasmotta/1079172 to your computer and use it in GitHub Desktop.
Column Text creation
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 text : ColumnText = new ColumnText("The content goes here"); | |
text.htmlText = "You can also change the content at any time"; | |
text.columns = 4; | |
text.margin = 30; | |
text.width = 600; | |
text.height = 400; | |
text.apply(); // Create the columns | |
addChild(text); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment