#55906 Extern Sheet References can have a last as well as a first sheet

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1613302 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2014-07-24 21:10:13 +00:00
parent 2a2cb871d6
commit 6a92588230
1 changed files with 11 additions and 0 deletions

View File

@ -230,6 +230,17 @@ public class ExternSheetRecord extends StandardRecord {
return getRef(extRefIndex).getFirstSheetIndex(); return getRef(extRefIndex).getFirstSheetIndex();
} }
/**
* Returns the last sheet that the reference applies to, or
* -1 if the referenced sheet can't be found, or -2 if the
* reference is workbook scoped.
* For a single sheet reference, the first and last should be
* the same.
*/
public int getLastSheetIndexFromRefIndex(int extRefIndex) {
return getRef(extRefIndex).getLastSheetIndex();
}
/** /**
* Add a zero-based reference to a {@link org.apache.poi.hssf.record.SupBookRecord}. * Add a zero-based reference to a {@link org.apache.poi.hssf.record.SupBookRecord}.
* <p> * <p>