Skip to content

Commit

Permalink
documentation markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Baker committed May 13, 2013
1 parent 9879a71 commit 76534a7
Show file tree
Hide file tree
Showing 4 changed files with 799 additions and 700 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ To determine if a filter is applied, note the icon in the column heading. A drop
![01-02-autofilter.png](./images/01-02-autofilter.png "")


A Filter button (![01-03-filter-icon-2.png](./images/01-03-filter-icon-2.png "")) means that a filter is applied. When you hover over the heading of a filtered column, a screen tip displays the filter applied to that column, such as "Equals a red cell color" or "Larger than 150".
A Filter button (![01-03-filter-icon-2.png](./images/01-03-filter-icon-2.png "")) means that a filter is applied. When you hover over the heading of a filtered column, a screen tip displays the filter that has been applied to that column, such as "Equals a red cell color" or "Larger than 150".

![01-04-autofilter.png](./images/01-04-autofilter.png "")
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $autoFilter = $objPHPExcel->getActiveSheet()->getAutoFilter();
$columnFilter = $autoFilter->getColumn('C');
```

This returns an autoFilter column object, and you can then apply filters to that column.
This returns an autoFilter column object, and you can then apply filter expressions to that column.

There are a number of different types of autofilter expressions. The most commonly used are:

Expand All @@ -24,3 +24,4 @@ There are a number of different types of autofilter expressions. The most common

These different types are mutually exclusive within any single column. You should not mix the different types of filter in the same column. PHPExcel will not actively prevent you from doing this, but the results are unpredictable.

Other filter expression types (such as cell colour filters) are not yet supported.
Loading

0 comments on commit 76534a7

Please sign in to comment.