https://issues.apache.org/bugzilla/show_bug.cgi?id=46192

           Summary: the method getColumnOutline(int column) in the Sheet,
                    HSSFSheet  is absent
           Product: POI
           Version: 3.2-FINAL
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: HSSF
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


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);
  }


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to