Work item 11583 - Need method for removing autoFilter
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@66340 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
ccbb28167b
commit
fd95065240
|
@ -1662,6 +1662,17 @@ class PHPExcel_Worksheet implements PHPExcel_IComparable
|
|||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove autofilter
|
||||
*
|
||||
* @return PHPExcel_Worksheet
|
||||
*/
|
||||
public function removeAutoFilter()
|
||||
{
|
||||
$this->_autoFilter = '';
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Freeze Pane
|
||||
*
|
||||
|
|
|
@ -32,7 +32,7 @@ Fixed in SVN:
|
|||
- Bugfix: (MBaker) Work item 14901 - VLOOKUP choking on parameters in PHPExcel.1.7.5/PHPExcel_Writer_Excel2007
|
||||
- Bugfix: (MBaker) Work item 14973 - PHPExcel_Cell::isInRange() incorrect results - offset by one column
|
||||
- Bugfix: (MBaker) Treat CodePage of 0 as CP1251 (for .xls files written by applications that don't set the CodePage correctly, such as Apple Numbers)
|
||||
|
||||
- Bugfix: (MB) Work item 11583 - Need method for removing autoFilter
|
||||
|
||||
|
||||
2010-12-10 (v1.7.5):
|
||||
|
|
Loading…
Reference in New Issue