Bug 24079 - [PATCH]No getters for Pane information in HSSFSheet
Summary: [PATCH]No getters for Pane information in HSSFSheet
Status: RESOLVED FIXED
Alias: None
Product: POI
Classification: Unclassified
Component: HSSF (show other bugs)
Version: 2.0-pre3
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---
Assignee: POI Developers List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-10-23 20:00 UTC by Robert Flaherty
Modified: 2006-08-28 20:27 UTC (History)
0 users



Attachments
Methods to be included in Sheet.java (4.64 KB, text/plain)
2003-10-23 20:01 UTC, Robert Flaherty
Details
methods to be included in HSSFSheet.java (2.31 KB, text/plain)
2003-10-23 20:02 UTC, Robert Flaherty
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Robert Flaherty 2003-10-23 20:00:45 UTC
Currently there are no getter methods for freeze/split panes.  Excel does 
allow some combination of freeze and split panes, but the behavior wan't clear 
to me (maybe the experts can correct my implementation).  My tests for "if 
(getFreezePanes() && getFreezePanesNoSplit())" in Sheet may have to be tweaked.
Comment 1 Robert Flaherty 2003-10-23 20:01:45 UTC
Created attachment 8707 [details]
Methods to be included in Sheet.java
Comment 2 Robert Flaherty 2003-10-23 20:02:18 UTC
Created attachment 8708 [details]
methods to be included in HSSFSheet.java
Comment 3 Robert Flaherty 2003-10-23 20:05:49 UTC
One other note is that this will require fix #23631 and/or #24015
Comment 4 Jason Height 2006-08-29 03:27:02 UTC
Added support for retrieving pane information in SVN.

Used slightly different approach and consolidated all of the pane information
into a PaneIfnromation class rather than having many getters there is now just one.

Jason