From 21c369406945290182e682621f76ad6a1586b1f5 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Mon, 18 Feb 2008 10:54:14 +0000 Subject: [PATCH] Add support to specify text sizes via formats. MDL-13505 ; merged from 19_STABLE --- lib/excellib.class.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/excellib.class.php b/lib/excellib.class.php index 97a995f501..c76de10460 100644 --- a/lib/excellib.class.php +++ b/lib/excellib.class.php @@ -302,6 +302,16 @@ class MoodleExcelFormat { } } + /** + * Set the size of the text in the format (in pixels). + * By default all texts in generated sheets are 10px. + * @param integer $size Size of the text (in pixels) + */ + function set_size($size) { + /// Set the size safely to the PEAR Format + $this->pear_excel_format->setSize($size); + } + /* Set weight of the format * @param integer $weight Weight for the text, 0 maps to 400 (normal text), * 1 maps to 700 (bold text). Valid range is: 100-1000. -- 2.39.5