diff options
author | Glen Stampoultzis <glens@apache.org> | 2002-04-22 07:12:26 +0000 |
---|---|---|
committer | Glen Stampoultzis <glens@apache.org> | 2002-04-22 07:12:26 +0000 |
commit | 62b7396c11ed4095ac1aebfe3cd0d82fe890612e (patch) | |
tree | 155a40acf70661c22a0c6940e1cb2ea561338322 /src/records | |
parent | f820460fceb977b81d1c6d5c135187bd72824541 (diff) | |
download | poi-62b7396c11ed4095ac1aebfe3cd0d82fe890612e.tar.gz poi-62b7396c11ed4095ac1aebfe3cd0d82fe890612e.zip |
Sheet properties record. Poi yum.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352459 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/records')
-rw-r--r-- | src/records/definitions/sheet_properties_record.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/records/definitions/sheet_properties_record.xml b/src/records/definitions/sheet_properties_record.xml new file mode 100644 index 0000000000..6596312640 --- /dev/null +++ b/src/records/definitions/sheet_properties_record.xml @@ -0,0 +1,20 @@ +<record id="0x1044" name="SheetProperties" package="org.apache.poi.hssf.record"> + <suffix>Record</suffix> + <extends>Record</extends> + <description>Describes a chart sheet properties record.</description> + <author>Glen Stampoultzis (glens at apache.org)</author> + <fields> + <field type="bits" size="2" name="flags"> + <bit number="0" name="chart type manually formatted" description="Has the chart type been manually formatted?"/> + <bit number="1" name="plot visible only" description="Only show visible cells on the chart."/> + <bit number="2" name="do not size with window" description="Do not size the chart when the window changes size"/> + <bit number="3" name="default plot dimensions" description="Indicates that the default area dimensions should be used."/> + <bit number="4" name="auto plot area" description="??"/> + </field> + <field type="int" size="1" name="empty"> + <const name="not plotted" value="0" description="Empty cells are not plotted"/> + <const name="zero" value="1" description="Empty cells are treated as zero"/> + <const name="interpolated" value="2" description="Empty cells are interpolated"/> + </field> + </fields> +</record> |