Skip to content

Instantly share code, notes, and snippets.

@lucasmotta
Created July 12, 2011 22:48
Show Gist options
  • Save lucasmotta/1079172 to your computer and use it in GitHub Desktop.
Save lucasmotta/1079172 to your computer and use it in GitHub Desktop.
Column Text creation
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