summaryrefslogtreecommitdiffstats
path: root/src/records
diff options
context:
space:
mode:
authorAndrew C. Oliver <acoliver@apache.org>2002-05-18 16:23:30 +0000
committerAndrew C. Oliver <acoliver@apache.org>2002-05-18 16:23:30 +0000
commit086cfe1c317279c7883f0c45d3fc288dbdaf5ac6 (patch)
tree05032d8f7e845944b3bc38c2f41b11eaf5dbfa22 /src/records
parent8753289c297b0aaa4090207734f3d93418014b02 (diff)
downloadpoi-086cfe1c317279c7883f0c45d3fc288dbdaf5ac6.tar.gz
poi-086cfe1c317279c7883f0c45d3fc288dbdaf5ac6.zip
new object link record (Graphign)
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352630 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/records')
-rw-r--r--src/records/definitions/object_link_record.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/records/definitions/object_link_record.xml b/src/records/definitions/object_link_record.xml
new file mode 100644
index 0000000000..b63a79ead7
--- /dev/null
+++ b/src/records/definitions/object_link_record.xml
@@ -0,0 +1,26 @@
+<record id="0x1027" name="ObjectLink" package="org.apache.poi.hssf.record">
+ <suffix>Record</suffix>
+ <extends>Record</extends>
+ <description>Links text to an object on the chart or identifies it as the title.</description>
+ <author>Andrew C. Oliver (acoliver at apache.org)</author>
+ <fields>
+ <field type="int" size="2" name="anchor id" description="what is the text object linked to">
+ <const name="chart title" value="1"/>
+ <const name="y axis" value="2"/>
+ <const name="x axis" value="3"/>
+ <const name="series or point" value="4"/>
+ <const name="z axis" value="7"/>
+ <testresult value="3"/>
+ </field>
+ <field type="int" size="2" name="link 1" description="if this is a data series or point, this holds a link to that point or series">
+ <testresult value="0x00"/>
+ </field>
+ <field type="int" size="2" name="link 2" description="if this is a data series or point, this holds a link to that point or series">
+ <testresult value="0x00"/>
+ </field>
+ </fields>
+ <testdata>
+ 03 00 00 00 00 00
+ </testdata>
+ <testsize>10</testsize>
+</record>