<?php
require_once("../rtf/Rtf.php");

$rtf = new Rtf();
$sect = &$rtf->addSection();

$table = &$sect->addTable();

$table->addRows(50.75);
$table->addColumnsList(array(33333));

$table->mergeCells(1131);
$table->writeToCell(11'Vertical merged cells.', new Font(), new ParFormat());
$table->setBordersOfCells(new BorderFormat(1"#ff0000"), 1131);

$table->mergeCells(1315);
$table->writeToCell(13'Horizontal merged cells', new Font(), new ParFormat());
$table->setBordersOfCells(new BorderFormat(1"#0000ff"), 1315);

$table->mergeCells(3355);
$table->writeToCell(33'Horizontal and vertical merged cells', new Font(), new ParFormat());
$table->setBordersOfCells(new BorderFormat(1"#00ff00"), 3355);


$rtf->sendRtf();
?>