From 6f58c63fda20003bdc7b0e384ea77637b3ce2acc Mon Sep 17 00:00:00 2001 From: Xavier Noguer Gallego Date: Tue, 28 Jan 2003 13:36:15 +0000 Subject: [PATCH] fixing comments git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@113757 c90b9560-bf6c-de11-be94-00142212c4b1 --- Writer/Format.php | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/Writer/Format.php b/Writer/Format.php index eb416a7..178c3f5 100644 --- a/Writer/Format.php +++ b/Writer/Format.php @@ -590,8 +590,9 @@ class Format extends PEAR } /** - * Bold has a range 0x64..0x3E8. - * 0x190 is normal. 0x2BC is bold. + * Sets the boldness of the text. + * Bold has a range 100..1000. + * 0 (400) is normal. 1 (700) is bold. * * @access public * @param integer $weight Weight for the text, 0 maps to 400 (normal text), @@ -621,7 +622,7 @@ class Format extends PEAR */ /** - * Sets the bottom border of the cell + * Sets the width for the bottom border of the cell * * @access public * @param integer $style style of the cell border. 1 => thin, 2 => thick. @@ -632,7 +633,7 @@ class Format extends PEAR } /** - * Sets the top border of the cell + * Sets the width for the top border of the cell * * @access public * @param integer $style style of the cell top border. 1 => thin, 2 => thick. @@ -643,7 +644,7 @@ class Format extends PEAR } /** - * Sets the left border of the cell + * Sets the width for the left border of the cell * * @access public * @param integer $style style of the cell left border. 1 => thin, 2 => thick. @@ -654,7 +655,7 @@ class Format extends PEAR } /** - * Sets the right border of the cell + * Sets the width for the right border of the cell * * @access public * @param integer $style style of the cell right border. 1 => thin, 2 => thick. @@ -872,10 +873,11 @@ class Format extends PEAR } /** - * Sets the num format + * Sets the numeric format. + * It can be date, time, currency, etc... * * @access public - * @param integer $num_format The num format. + * @param integer $num_format The numeric format. */ function setNumFormat($num_format) { @@ -893,7 +895,7 @@ class Format extends PEAR } /** - * Sets font as outLine. + * Sets outlining for a font. * * @access public */