add sprmPDxaLeft1 0x8460 PAPX SPRM support

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1166209 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-09-07 14:58:42 +00:00
parent 78a366bd0c
commit 5b11460c66

View File

@ -412,11 +412,16 @@ public final class ParagraphSprmUncompressor
// sprmPFInnerTtp -- 0x244c // sprmPFInnerTtp -- 0x244c
newPAP.setFTtpEmbedded( sprm.getOperand() != 0); newPAP.setFTtpEmbedded( sprm.getOperand() != 0);
break; break;
case 0x60:
// sprmPDxaLeft1 -- 0x8460
newPAP.setDxaLeft1( sprm.getOperand() );
break;
case 0x61: case 0x61:
// sprmPJc // sprmPJc
newPAP.setJustificationLogical((byte) sprm.getOperand()); newPAP.setJustificationLogical((byte) sprm.getOperand());
break; break;
default: default:
logger.log( POILogger.DEBUG, "Unknown PAP sprm ignored: " + sprm );
break; break;
} }
} }