aboutsummaryrefslogtreecommitdiffstats
path: root/src/records/definitions/object_link_record.xml
blob: 03848bb8f2b2fa83bc0010443038f459a1e9480b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0"?>
<!--
   ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
   ====================================================================
-->
<record id="0x1027" name="ObjectLink" excel-record-id="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>