Bug 46192

Summary: [PATCH] the method getColumnOutline(int column) in the Sheet, HSSFSheet is absent
Product: POI Reporter: Dmitry Smirnov <dsmirnov>
Component: HSSFAssignee: POI Developers List <dev>
Status: RESOLVED FIXED    
Severity: normal CC: walczak.szy
Priority: P2    
Version: 3.2-FINAL   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Attachments: Patch gives methods to read level of grouped rows and columns (outlines)

Description Dmitry Smirnov 2008-11-12 03:56:32 UTC
HSSFSheet and Sheet should has method for getting information about outline column.  for example:

Sheet.java:
  public int getColumnOutline(int column){
     ColumnInfoRecord columnInfoRecord = columns.getColInfo(k);
     return columnInfoRecord.getOutlineLevel();
  }

HSSFSheet.java:
  public int getColumnOutline(int column){
      return sheet.getColumnOutline(column);
  }
Comment 1 Simon 2014-08-18 08:08:43 UTC
Created attachment 31925 [details]
Patch gives methods to read level of grouped rows and columns (outlines)

Some methods for getting outline level were protected or private. There is no reason to hide them, reading outlines is important too.
Comment 2 Dominik Stadler 2014-08-18 09:19:48 UTC
Please don't set to resolved unless change is actually applied to Subversion repository...
Comment 3 Simon 2014-08-18 09:55:01 UTC
OK, sorry, I thought "VERIFIED" will be used for it.
Comment 4 Dominik Stadler 2015-01-02 20:07:19 UTC
Thanks for the patch, this is now applied on trunk via r1649107.