Worksheet::setRow Worksheet::insertBitmap

Spreadsheet_Excel_Writer

PEAR Manual


Worksheet::mergeCells

Worksheet::mergeCells -- This is an Excel97/2000 method. It is required to perform more complicated

Synopsis

      require_once "Spreadsheet/Excel/Writer.php";
     

void Worksheet::mergeCells ( integer $first_row , integer $first_col , integer $last_row , integer $last_col )

Description

This is an Excel97/2000 method. It is required to perform more complicated merging than the normal setAlign('merge'). It merges the area given by its arguments.

Parameter

  • integer $first_row - First row of the area to merge

  • integer $first_col - First column of the area to merge

  • integer $last_row - Last row of the area to merge

  • integer $last_col - Last column of the area to merge

Note

This function can not be called statically.

Example

Using mergeCells()

     
<?php

?>


Worksheet::setRow Worksheet::insertBitmap

Spreadsheet_Excel_Writer

PEAR Manual