create
[ class tree: create ] [ index: create ] [ all elements ]

example

  1. <?php
  2.  
  3. /**
  4.  * Inserts blocks of text with different line spacings.
  5.  *
  6.  * @category   Phpdocx
  7.  * @package    examples
  8.  * @subpackage easy
  9.  * @copyright  Copyright (c) 2009-2013 Narcea Producciones Multimedia S.L.
  10.  *              (http://www.2mdc.com)
  11.  * @license    http://www.phpdocx.com/wp-content/themes/lightword/pro_license.php
  12.  * @version    2012.12.26
  13.  * @link       http://www.phpdocx.com
  14.  * @since      File available since Release 1.8
  15.  */
  16. require_once '../../classes/CreateDocx.inc';
  17.  
  18. $docx new CreateDocx();
  19.  
  20. $text 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
  21.     'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.';
  22.  
  23. $paramsText array(
  24.     'b' => 'single',
  25.     'font' => 'Arial',
  26.     'lineSpacing' => 240
  27. );
  28.  
  29. $docx->addText($text$paramsText);
  30.  
  31. $text 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
  32.     'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.';
  33.  
  34. $paramsText array(
  35.     'b' => 'single',
  36.     'font' => 'Arial',
  37.     'lineSpacing' => 480
  38. );
  39.  
  40. $docx->addText($text$paramsText);
  41.  
  42. $text 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, ' .
  43.     'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.';
  44.  
  45. $paramsText array(
  46.     'b' => 'single',
  47.     'font' => 'Arial',
  48.     'lineSpacing' => 120
  49. );
  50.  
  51. $docx->addText($text$paramsText);
  52.  
  53. $docx->createDocx('../docx/example_text_linespacing');

Documentation generated on Mon, 13 Jan 2014 13:44:10 +0100 by phpDocumentor 1.4.4