diff options
author | Andrew C. Oliver <acoliver@apache.org> | 2002-05-08 00:22:33 +0000 |
---|---|---|
committer | Andrew C. Oliver <acoliver@apache.org> | 2002-05-08 00:22:33 +0000 |
commit | dbb46a91809d63823b357635460ae5d672e14944 (patch) | |
tree | a4d6b2d2cfe32cd9226c452b642b3b78374d3332 /src/records/definitions | |
parent | 4ab7e8adb0f292f5540e1676cc9da55c6380f1b9 (diff) | |
download | poi-dbb46a91809d63823b357635460ae5d672e14944.tar.gz poi-dbb46a91809d63823b357635460ae5d672e14944.zip |
Added SC window magnification...fixed error on res001 that has been bugging me.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/records/definitions')
-rw-r--r-- | src/records/definitions/scl_record.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/records/definitions/scl_record.xml b/src/records/definitions/scl_record.xml new file mode 100644 index 0000000000..f3d8471f4d --- /dev/null +++ b/src/records/definitions/scl_record.xml @@ -0,0 +1,10 @@ +<record id="0xa0" name="SCL" package="org.apache.poi.hssf.record"> + <suffix>Record</suffix> + <extends>Record</extends> + <description>Specifies the window's zoom magnification. If this record isn't present then the windows zoom is 100%. see p384 Excel Dev Kit</description> + <author>Andrew C. Oliver (acoliver at apache.org)</author> + <fields> + <field type="int" size="2" name="numerator" description="numerator of the fraction"/> + <field type="int" size="2" name="denominator" description="denominator of the fraction"/> + </fields> +</record> |