Doc Block changes
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@87550 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
eeac8e3b7f
commit
19403c43d8
@ -202,11 +202,13 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
* @param int $str_total Total number of strings
|
* @param int &$str_total Total number of strings
|
||||||
* @param int $str_unique Total number of unique strings
|
* @param int &$str_unique Total number of unique strings
|
||||||
* @param array $str_table
|
* @param array &$str_table
|
||||||
* @param mixed $parser The formula parser created for the Workbook
|
* @param array &$colors
|
||||||
* @param string $tempDir The temporary directory to be used
|
* @param mixed $parser The formula parser created for the Workbook
|
||||||
|
* @param boolean $preCalculateFormulas Flag indicating whether formulas should be calculated or just written
|
||||||
|
* @param string $phpSheet The worksheet to write
|
||||||
* @param PHPExcel_Worksheet $phpSheet
|
* @param PHPExcel_Worksheet $phpSheet
|
||||||
*/
|
*/
|
||||||
public function __construct(&$str_total, &$str_unique, &$str_table, &$colors,
|
public function __construct(&$str_total, &$str_unique, &$str_table, &$colors,
|
||||||
@ -604,7 +606,7 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
* @param integer $row Zero indexed row
|
* @param integer $row Zero indexed row
|
||||||
* @param integer $col Zero indexed column
|
* @param integer $col Zero indexed column
|
||||||
* @param float $num The number to write
|
* @param float $num The number to write
|
||||||
* @param mixed $format The optional XF format
|
* @param mixed $xfIndex The optional XF format
|
||||||
* @return integer
|
* @return integer
|
||||||
*/
|
*/
|
||||||
private function _writeNumber($row, $col, $num, $xfIndex)
|
private function _writeNumber($row, $col, $num, $xfIndex)
|
||||||
@ -641,7 +643,7 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
* @param int $row Row index (0-based)
|
* @param int $row Row index (0-based)
|
||||||
* @param int $col Column index (0-based)
|
* @param int $col Column index (0-based)
|
||||||
* @param string $str The string
|
* @param string $str The string
|
||||||
* @param mixed $format The XF format for the cell
|
* @param mixed $xfIndex The XF format index for the cell
|
||||||
* @param array $arrcRun Index to Font record and characters beginning
|
* @param array $arrcRun Index to Font record and characters beginning
|
||||||
*/
|
*/
|
||||||
private function _writeRichTextString($row, $col, $str, $xfIndex, $arrcRun){
|
private function _writeRichTextString($row, $col, $str, $xfIndex, $arrcRun){
|
||||||
@ -673,7 +675,7 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
* @param integer $row Zero indexed row
|
* @param integer $row Zero indexed row
|
||||||
* @param integer $col Zero indexed column
|
* @param integer $col Zero indexed column
|
||||||
* @param string $str The string to write
|
* @param string $str The string to write
|
||||||
* @param mixed $format The XF format for the cell
|
* @param mixed $xfIndex The XF format index for the cell
|
||||||
* @return integer
|
* @return integer
|
||||||
*/
|
*/
|
||||||
private function _writeLabel($row, $col, $str, $xfIndex)
|
private function _writeLabel($row, $col, $str, $xfIndex)
|
||||||
@ -709,7 +711,7 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
* @param integer $row Zero indexed row
|
* @param integer $row Zero indexed row
|
||||||
* @param integer $col Zero indexed column
|
* @param integer $col Zero indexed column
|
||||||
* @param string $str The string to write
|
* @param string $str The string to write
|
||||||
* @param mixed $format The XF format for the cell
|
* @param mixed $xfIndex The XF format index for the cell
|
||||||
* @return integer
|
* @return integer
|
||||||
*/
|
*/
|
||||||
private function _writeLabelSst($row, $col, $str, $xfIndex)
|
private function _writeLabelSst($row, $col, $str, $xfIndex)
|
||||||
@ -774,7 +776,7 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
*
|
*
|
||||||
* @param integer $row Zero indexed row
|
* @param integer $row Zero indexed row
|
||||||
* @param integer $col Zero indexed column
|
* @param integer $col Zero indexed column
|
||||||
* @param mixed $format The XF format
|
* @param mixed $xfIndex The XF format index
|
||||||
*/
|
*/
|
||||||
function _writeBlank($row, $col, $xfIndex)
|
function _writeBlank($row, $col, $xfIndex)
|
||||||
{
|
{
|
||||||
@ -819,7 +821,7 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
* @param integer $row Zero indexed row
|
* @param integer $row Zero indexed row
|
||||||
* @param integer $col Zero indexed column
|
* @param integer $col Zero indexed column
|
||||||
* @param string $formula The formula text string
|
* @param string $formula The formula text string
|
||||||
* @param mixed $format The optional XF format
|
* @param mixed $xfIndex The XF format index
|
||||||
* @param mixed $calculatedValue Calculated value
|
* @param mixed $calculatedValue Calculated value
|
||||||
* @return integer
|
* @return integer
|
||||||
*/
|
*/
|
||||||
@ -2887,6 +2889,9 @@ class PHPExcel_Writer_Excel5_Worksheet extends PHPExcel_Writer_Excel5_BIFFwriter
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Map Error code
|
* Map Error code
|
||||||
|
*
|
||||||
|
* @param string $errorCode
|
||||||
|
* @return int
|
||||||
*/
|
*/
|
||||||
private static function _mapErrorCode($errorCode) {
|
private static function _mapErrorCode($errorCode) {
|
||||||
switch ($errorCode) {
|
switch ($errorCode) {
|
||||||
|
@ -134,9 +134,8 @@ class PHPExcel_Writer_Excel5_Xf
|
|||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
* @access private
|
* @access public
|
||||||
* @param integer $index the XF index for the format.
|
* @param PHPExcel_Style The XF format
|
||||||
* @param PHPExcel_Style
|
|
||||||
*/
|
*/
|
||||||
public function __construct(PHPExcel_Style $style = null)
|
public function __construct(PHPExcel_Style $style = null)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user