Unset the border formattings when set to 0
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1691078 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8962f982f5
commit
73f2c142e8
@ -114,6 +114,9 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
if (border != 0) {
|
if (border != 0) {
|
||||||
cfRuleRecord.setBottomLeftTopRightBorderModified(true);
|
cfRuleRecord.setBottomLeftTopRightBorderModified(true);
|
||||||
cfRuleRecord.setTopLeftBottomRightBorderModified(true);
|
cfRuleRecord.setTopLeftBottomRightBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setBottomLeftTopRightBorderModified(false);
|
||||||
|
cfRuleRecord.setTopLeftBottomRightBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,6 +124,8 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
borderFormatting.setBorderLeft(border);
|
borderFormatting.setBorderLeft(border);
|
||||||
if (border != 0) {
|
if (border != 0) {
|
||||||
cfRuleRecord.setLeftBorderModified(true);
|
cfRuleRecord.setLeftBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setLeftBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,6 +133,8 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
borderFormatting.setBorderRight(border);
|
borderFormatting.setBorderRight(border);
|
||||||
if (border != 0) {
|
if (border != 0) {
|
||||||
cfRuleRecord.setRightBorderModified(true);
|
cfRuleRecord.setRightBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setRightBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,6 +142,8 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
borderFormatting.setBorderTop(border);
|
borderFormatting.setBorderTop(border);
|
||||||
if (border != 0) {
|
if (border != 0) {
|
||||||
cfRuleRecord.setTopBorderModified(true);
|
cfRuleRecord.setTopBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setTopBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -142,6 +151,8 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
borderFormatting.setBottomBorderColor(color);
|
borderFormatting.setBottomBorderColor(color);
|
||||||
if (color != 0) {
|
if (color != 0) {
|
||||||
cfRuleRecord.setBottomBorderModified(true);
|
cfRuleRecord.setBottomBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setBottomBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,6 +161,9 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
if (color != 0) {
|
if (color != 0) {
|
||||||
cfRuleRecord.setBottomLeftTopRightBorderModified(true);
|
cfRuleRecord.setBottomLeftTopRightBorderModified(true);
|
||||||
cfRuleRecord.setTopLeftBottomRightBorderModified(true);
|
cfRuleRecord.setTopLeftBottomRightBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setBottomLeftTopRightBorderModified(false);
|
||||||
|
cfRuleRecord.setTopLeftBottomRightBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -164,6 +178,8 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
borderFormatting.setLeftBorderColor(color);
|
borderFormatting.setLeftBorderColor(color);
|
||||||
if (color != 0) {
|
if (color != 0) {
|
||||||
cfRuleRecord.setLeftBorderModified(true);
|
cfRuleRecord.setLeftBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setLeftBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -171,6 +187,8 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
borderFormatting.setRightBorderColor(color);
|
borderFormatting.setRightBorderColor(color);
|
||||||
if (color != 0) {
|
if (color != 0) {
|
||||||
cfRuleRecord.setRightBorderModified(true);
|
cfRuleRecord.setRightBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setRightBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -178,6 +196,8 @@ public final class HSSFBorderFormatting implements org.apache.poi.ss.usermodel.B
|
|||||||
borderFormatting.setTopBorderColor(color);
|
borderFormatting.setTopBorderColor(color);
|
||||||
if (color != 0) {
|
if (color != 0) {
|
||||||
cfRuleRecord.setTopBorderModified(true);
|
cfRuleRecord.setTopBorderModified(true);
|
||||||
|
} else {
|
||||||
|
cfRuleRecord.setTopBorderModified(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user