mirror of https://github.com/apache/poi.git
#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:
parent
2a2cb871d6
commit
6a92588230
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue