diff --git a/Writer/Format.php b/Writer/Format.php index 82318c7..fc4f245 100644 --- a/Writer/Format.php +++ b/Writer/Format.php @@ -926,5 +926,15 @@ class Spreadsheet_Excel_Writer_Format extends PEAR { $this->_font_script = $script; } + + /** + * Unlocks a cell. Useful for unprotecting particular cells of a protected sheet. + * + * @access public + */ + function setUnLocked() + { + $this->_locked = 0; + } } ?>