Guest User

Untitled

a guest
Feb 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. lorem = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pulvinar diam eu ' +
  2. 'dolor bibendum et varius diam laoreet. Morbi eget rutrum enim. Sed enim ipsum, ' +
  3. 'posuere nec hendrerit non, commodo quis tortor. Fusce id nisl augue. Fusce at ' +
  4. 'lectus ut libero vehicula imperdiet.'
  5.  
  6. doc.text 'This text is left aligned. ' + lorem, 100, 100,
  7. width: 410
  8. align: 'left'
  9.  
  10. doc.moveDown()
  11.  
  12. doc.text 'This text is centered. ' + lorem,
  13. width: 410
  14. align: 'center'
  15.  
  16. doc.moveDown()
  17.  
  18. doc.text 'This text is right aligned. ' + lorem,
  19. width: 410
  20. align: 'right'
  21.  
  22. doc.moveDown()
  23.  
  24. doc.text 'This text is justified. ' + lorem,
  25. width: 410
  26. align: 'justify'
  27.  
  28. # draw bounding rectangle
  29. doc.rect(100, 100, 410, doc.y - 100)
  30. .stroke()
Add Comment
Please, Sign In to add comment