summaryrefslogtreecommitdiffstats
path: root/src/records
diff options
context:
space:
mode:
authorGlen Stampoultzis <glens@apache.org>2002-04-14 12:43:57 +0000
committerGlen Stampoultzis <glens@apache.org>2002-04-14 12:43:57 +0000
commite956e552776fa083b87b31b26acf718f746d907d (patch)
tree3785df3c7ca593d4e4501a129cd9a1d7e1530989 /src/records
parent82f535e86e9698531844adde3eabeed116ad343b (diff)
downloadpoi-e956e552776fa083b87b31b26acf718f746d907d.tar.gz
poi-e956e552776fa083b87b31b26acf718f746d907d.zip
Added linked data record.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352411 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/records')
-rw-r--r--src/records/definitions/linked_data_record.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/records/definitions/linked_data_record.xml b/src/records/definitions/linked_data_record.xml
new file mode 100644
index 0000000000..35c63bd24d
--- /dev/null
+++ b/src/records/definitions/linked_data_record.xml
@@ -0,0 +1,25 @@
+<record id="0x1051" name="LinkedData" package="org.apache.poi.hssf.record">
+ <suffix>Record</suffix>
+ <extends>Record</extends>
+ <description>Describes a linked data record. This record referes to the series data or text.</description>
+ <author>Glen Stampoultzis (glens at apache.org)</author>
+ <fields>
+ <field type="int" size="1" name="link type" description="What type of link is this?">
+ <const name="title or text" value="0" description="links a series title or text"/>
+ <const name="values" value="1" description="links to series values"/>
+ <const name="categories" value="1" description="links to categories"/>
+ </field>
+ <field type="int" size="1" name="reference type">
+ <const name="default categories" value="0" description="use default categories"/>
+ <const name="direct" value="1" description="reference to some text or a value entered directly into the formula bar"/>
+ <const name="worksheet" value="2" description="reference links to worksheet"/>
+ <const name="not used" value="3" description="??"/>
+ <const name="error reported" value="4" description="error reported"/>
+ </field>
+ <field type="bits" size="2" name="options">
+ <bit number="0" name="custom number format" description="true if this object has a custom number format"/>
+ </field>
+ <field type="int" size="2" name="index number fmt record"/>
+ <field type="int" size="2" name="formula of link" description="not supported"/>
+ </fields>
+</record>