area references are relative by default

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352564 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew C. Oliver 2002-04-30 02:02:01 +00:00
parent c915105d4e
commit 478e933939
1 changed files with 4 additions and 0 deletions

View File

@ -97,6 +97,10 @@ public class AreaPtg
setFirstColumn((short)xyxy[1]); setFirstColumn((short)xyxy[1]);
setLastRow((short)xyxy[2]); setLastRow((short)xyxy[2]);
setLastColumn((short)xyxy[3]); setLastColumn((short)xyxy[3]);
setFirstColRelative(true);
setLastColRelative(true);
setFirstRowRelative(true);
setLastRowRelative(true);
} }