diff options
author | Glen Stampoultzis <glens@apache.org> | 2002-03-25 10:08:16 +0000 |
---|---|---|
committer | Glen Stampoultzis <glens@apache.org> | 2002-03-25 10:08:16 +0000 |
commit | 538e0edd02f27a0ccd49c24125d4bae6c1d8033b (patch) | |
tree | d822d5ce7a729c3f3142608937f16cc399340cbb /src/records/definitions | |
parent | a50cd7fdc5e6c642ff20a9e2b3b459e96c70c30e (diff) | |
download | poi-538e0edd02f27a0ccd49c24125d4bae6c1d8033b.tar.gz poi-538e0edd02f27a0ccd49c24125d4bae6c1d8033b.zip |
Area format record
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352280 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/records/definitions')
-rw-r--r-- | src/records/definitions/area_format_record.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/records/definitions/area_format_record.xml b/src/records/definitions/area_format_record.xml new file mode 100644 index 0000000000..b5cacc34fe --- /dev/null +++ b/src/records/definitions/area_format_record.xml @@ -0,0 +1,17 @@ +<record id="0x100a" name="AreaFormat" package="org.apache.poi.hssf.record"> + <suffix>Record</suffix> + <extends>Record</extends> + <description>The area format record is used to define the colours and patterns for an area.</description> + <author>Glen Stampoultzis (glens at apache.org)</author> + <fields> + <field type="int" size="4" name="foreground color" description="foreground color in RGB"/> + <field type="int" size="4" name="background color" description="background color in RGB"/> + <field type="int" size="2" name="pattern" description="fill pattern"/> + <field type="int" size="2" name="format flags"> + <bit number="0" name="automatic" description="automatic formatting"/> + <bit number="1" name="invert" description="swap foreground and background colours when data is negative"/> + </field> + <field type="int" size="2" name="forecolor index" description="index to foreground color"/> + <field type="int" size="2" name="backcolor index" description="index to background color"/> + </fields> +</record> |