From: Nick Burch Date: Mon, 17 Sep 2007 10:29:27 +0000 (+0000) Subject: Add a note on autoSizeColumn being a somewhat slow opperation. Update the status log X-Git-Tag: REL_3_0_2_BETA1~52 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0b3c5afcfbcb40aedcae2fea2c19e483c7ed2908;p=poi.git Add a note on autoSizeColumn being a somewhat slow opperation. Update the status log git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@576351 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/changes.xml b/src/documentation/content/xdocs/changes.xml index fc703a38f9..86ab48719b 100644 --- a/src/documentation/content/xdocs/changes.xml +++ b/src/documentation/content/xdocs/changes.xml @@ -36,6 +36,11 @@ + 43323 - [PATCH] - Support for adding Pictures to ShapeGroups in HSLF. + 43222 - [PATCH] - Support for getting OLE object data from HSSFWorkbook. + 43247 - [PATCH] - Support for getting OLE object data from slideshows. + 43125 - [PATCH] - Support for reading EMF, WMF and PICT images via HSSFWorkbook.getAllPictures() + 43088 - [PATCH] - Fix for reading files with long cell comments and text boxes 42844 - [PATCH] - Fix for the EventUserModel and records that aren't immediately followed by their ContinueRecords 43055 - [PATCH] - Fix for saving Crystal Reports xls files when preserving nodes 43116 - [PATCH] - Fix for Escher layer handling of embeded OLE2 documents diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index f1feff1789..a5ab0905b9 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -33,6 +33,11 @@ + 43323 - [PATCH] - Support for adding Pictures to ShapeGroups in HSLF. + 43222 - [PATCH] - Support for getting OLE object data from HSSFWorkbook. + 43247 - [PATCH] - Support for getting OLE object data from slideshows. + 43125 - [PATCH] - Support for reading EMF, WMF and PICT images via HSSFWorkbook.getAllPictures() + 43088 - [PATCH] - Fix for reading files with long cell comments and text boxes 42844 - [PATCH] - Fix for the EventUserModel and records that aren't immediately followed by their ContinueRecords 43055 - [PATCH] - Fix for saving Crystal Reports xls files when preserving nodes 43116 - [PATCH] - Fix for Escher layer handling of embeded OLE2 documents diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java index def2e75a18..bf5246cb28 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java @@ -1424,6 +1424,10 @@ public class HSSFSheet /** * Adjusts the column width to fit the contents. * + * This process can be relatively slow on large sheets, so this should + * normally only be called once per column, at the end of your + * processing. + * * @param column the column index */ public void autoSizeColumn(short column) {