diff options
author | Yegor Kozlov <yegor@apache.org> | 2011-07-29 05:37:06 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2011-07-29 05:37:06 +0000 |
commit | 408053e61bb41801cf4ea1c77b7f091be45fa865 (patch) | |
tree | 989cf6ad7c23c95b5d06c4cbfe6d803580e41e0b /src/documentation/content | |
parent | d6fdb2dec18389e3b2dba2243abc3e5751b6449d (diff) | |
download | poi-408053e61bb41801cf4ea1c77b7f091be45fa865.tar.gz poi-408053e61bb41801cf4ea1c77b7f091be45fa865.zip |
mention ConditionalFormats, ToHtml and ToCSV in the docs
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1152110 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/content')
-rw-r--r-- | src/documentation/content/xdocs/spreadsheet/examples.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/documentation/content/xdocs/spreadsheet/examples.xml b/src/documentation/content/xdocs/spreadsheet/examples.xml index b44b9df16b..89c17cbe84 100644 --- a/src/documentation/content/xdocs/spreadsheet/examples.xml +++ b/src/documentation/content/xdocs/spreadsheet/examples.xml @@ -71,5 +71,31 @@ <img src="../resources/images/timesheet.jpg" alt="timesheet demo"/> </p> </section> + <section><title>Conditional Formats</title> + <p> The <link href="http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/ss/examples/ConditionalFormats.java">ConditionalFormats</link> + demo is a collection of short examples showing what you can do with Excel conditional formating in POI: + </p> + <ul> + <li>Highlight cells based on their values</li> + <li>Highlight a range of cells based on a formula</li> + <li>Hide errors</li> + <li>Hide the duplicate values</li> + <li>Highlight duplicate entries in a column</li> + <li>Highlight items that are in a list on the worksheet</li> + <li>Highlight payments that are due in the next thirty days</li> + <li>Shade alternating rows on the worksheet</li> + <li>Shade bands of rows on the worksheet</li> + </ul> + </section> + <section><title>ToHtml</title> + <p> The <link href="http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java">ToHtml</link> + example shows how to display a spreadsheet in HTML using the classes for spreadsheet display. + </p> + </section> + <section><title>ToCSV</title> + <p> The <link href="http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/ss/examples/ToCSV.java">ToCSV</link> + example demonstrates <em>one</em> way to convert an Excel spreadsheet into a CSV file. + </p> + </section> </body> </document> |