Showing:

Annotations
Attributes
Diagrams
Facets
Instances
Model
Properties
Source
Used by
Included schema ahpdfxml_outline.xsd
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
アウトラインファイルには、PDF中のアウトラインが抽出されます。
ルート要素はoutlinesで子要素はoutlineです。
outlinesの属性は、子要素の数、先頭の子要素の番号、最終の子要素の番号を持ちます。
outlineの属性は、子要素の数、先頭の子要素の番号、最終の子要素の番号、前のoutoline番号、次のoutline番号、タイトル、宛先を持ちます。
Properties
attribute form default qualified
element form default qualified
Element ahp:outlines
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
アウトラインのルート要素
Diagram
Diagramahpdfxml_outline_xsd.tmp#outlines_outline-idahpdfxml_outline_xsd.tmp#outlines_child-countahpdfxml_outline_xsd.tmp#outlines_child-firstahpdfxml_outline_xsd.tmp#outlines_child-last
Properties
content complex
Attributes
QName Type Use Annotation
ahp:child-count xs:positiveInteger required
子供のoutlineの個数
ahp:child-first xs:ID optional
先頭の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
ahp:child-last xs:ID optional
最終の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
ahp:outline-id xs:ID required
アウトラインのルートの識別値
Source
<xs:element name="outlines">
  <xs:annotation>
    <xs:documentation xml:lang="en">Root elelment of the outline</xs:documentation>
    <xs:documentation xml:lang="ja">アウトラインのルート要素</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="outline-id" type="xs:ID" use="required">
      <xs:annotation>
        <xs:documentation xml:lang="en">An identifier of outline root</xs:documentation>
        <xs:documentation xml:lang="ja">アウトラインのルートの識別値</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="child-count" type="xs:positiveInteger" use="required">
      <xs:annotation>
        <xs:documentation xml:lang="en">Number of child outline</xs:documentation>
        <xs:documentation xml:lang="ja">子供のoutlineの個数</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="child-first" type="xs:ID" use="optional">
      <xs:annotation>
        <xs:documentation xml:lang="en">Outline ID of the first child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
        <xs:documentation xml:lang="ja">先頭の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="child-last" type="xs:ID" use="optional">
      <xs:annotation>
        <xs:documentation xml:lang="en">Outline ID of the last child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
        <xs:documentation xml:lang="ja">最終の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
Element ahp:outline
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
アウトライン要素
Diagram
Diagramahpdfxml_outline_xsd.tmp#outline_outline-idahpdfxml_outline_xsd.tmp#outline_child-countahpdfxml_outline_xsd.tmp#outline_child-firstahpdfxml_outline_xsd.tmp#outline_child-lastahpdfxml_outline_xsd.tmp#outline_parentahpdfxml_outline_xsd.tmp#outline_previousahpdfxml_outline_xsd.tmp#outline_nextahpdfxml_outline_xsd.tmp#outline_titleahpdfxml_outline_xsd.tmp#destination
Properties
content complex
Model
Children ahp:destination
Instance
<ahp:outline ahp:child-count="" ahp:child-first="" ahp:child-last="" ahp:next="" ahp:outline-id="" ahp:parent="" ahp:previous="" ahp:title="" xmlns:ahp="http://www.antennahouse.com/names/PDF/AHPDFXML">
  <ahp:destination ahp:b="" ahp:destinationType="" ahp:l="" ahp:page-no="" ahp:r="" ahp:t="" ahp:uri="">{0,1}</ahp:destination>
</ahp:outline>
Attributes
QName Type Use Annotation
ahp:child-count xs:positiveInteger required
子供のoutlineの個数
ahp:child-first xs:ID optional
先頭の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
ahp:child-last xs:ID optional
最終の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
ahp:next xs:ID optional
次のoutlineのID
最後のoutlineには、存在しない。
ahp:outline-id xs:ID required
outlineに一意につけられる識別値
ahp:parent xs:ID required
親のoutlineのID
ahp:previous xs:ID optional
前のoutlineのID
先頭のoutlineには、存在しない。
ahp:title xs:string required
タイトル
Source
<xs:element name="outline">
  <xs:annotation>
    <xs:documentation xml:lang="en">outline element</xs:documentation>
    <xs:documentation xml:lang="ja">アウトライン要素</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="ahp:destination" minOccurs="0"/>
    </xs:sequence>
    <xs:attribute name="outline-id" type="xs:ID" use="required">
      <xs:annotation>
        <xs:documentation xml:lang="en">A unique identifier given to outline</xs:documentation>
        <xs:documentation xml:lang="ja">outlineに一意につけられる識別値</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="child-count" type="xs:positiveInteger" use="required">
      <xs:annotation>
        <xs:documentation xml:lang="en">Number of child outline</xs:documentation>
        <xs:documentation xml:lang="ja">子供のoutlineの個数</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="child-first" type="xs:ID" use="optional">
      <xs:annotation>
        <xs:documentation xml:lang="en">Outline ID of the first child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
        <xs:documentation xml:lang="ja">先頭の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="child-last" type="xs:ID" use="optional">
      <xs:annotation>
        <xs:documentation xml:lang="en">Outline ID of the last child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
        <xs:documentation xml:lang="ja">最終の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="parent" type="xs:ID" use="required">
      <xs:annotation>
        <xs:documentation xml:lang="en">Outline ID of the parent</xs:documentation>
        <xs:documentation xml:lang="ja">親のoutlineのID</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="previous" type="xs:ID" use="optional">
      <xs:annotation>
        <xs:documentation xml:lang="en">ID of the previous outline It does not exist in the first outline.</xs:documentation>
        <xs:documentation xml:lang="ja">前のoutlineのID 先頭のoutlineには、存在しない。</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="next" type="xs:ID" use="optional">
      <xs:annotation>
        <xs:documentation xml:lang="en">ID of the next outline It does not exist in the Last outline.</xs:documentation>
        <xs:documentation xml:lang="ja">次のoutlineのID 最後のoutlineには、存在しない。</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="title" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation xml:lang="en">Title</xs:documentation>
        <xs:documentation xml:lang="ja">タイトル</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
Element ahp:destination
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
宛先
Diagram
Diagramahpdfxml_common_xsd.tmp#page-noahpdfxml_outline_xsd.tmp#destination_uriahpdfxml_outline_xsd.tmp#destinationTypeahpdfxml_common_xsd.tmp#lahpdfxml_common_xsd.tmp#rahpdfxml_common_xsd.tmp#tahpdfxml_common_xsd.tmp#b
Properties
content complex
Used by
Element ahp:outline
Attributes
QName Type Use Annotation
ahp:b ahp:positionType optional
下位置
ahp:destinationType restriction of xs:string optional
宛先タイプ
ahp:l ahp:positionType optional
左位置
ahp:page-no xs:positiveInteger optional
PDF中のページ番号を示します。
この属性は、frame-typeが"image" のahp:frame要素 、ahp:run要素、ahp:bead要素、ahp:destination要素のアトリビュートとして出力されます。
ahp:r ahp:positionType optional
右位置
ahp:t ahp:positionType optional
上位置
ahp:uri xs:anyURI optional
Source
<xs:element name="destination">
  <xs:annotation>
    <xs:documentation xml:lang="en">Destination</xs:documentation>
    <xs:documentation xml:lang="ja">宛先</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:annotation>
      <xs:documentation xml:lang="en">Destination</xs:documentation>
      <xs:documentation xml:lang="ja">宛先</xs:documentation>
    </xs:annotation>
    <xs:attribute ref="ahp:page-no" use="optional"/>
    <xs:attribute name="uri" type="xs:anyURI" use="optional"/>
    <xs:attribute ref="ahp:destinationType" use="optional"/>
    <xs:attribute ref="ahp:l" use="optional"/>
    <xs:attribute ref="ahp:r" use="optional"/>
    <xs:attribute ref="ahp:t" use="optional"/>
    <xs:attribute ref="ahp:b" use="optional"/>
  </xs:complexType>
</xs:element>
Attribute ahp:outlines / @ahp:outline-id
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
アウトラインのルートの識別値
Type xs:ID
Properties
use required
Used by
Element ahp:outlines
Source
<xs:attribute name="outline-id" type="xs:ID" use="required">
  <xs:annotation>
    <xs:documentation xml:lang="en">An identifier of outline root</xs:documentation>
    <xs:documentation xml:lang="ja">アウトラインのルートの識別値</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outlines / @ahp:child-count
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
子供のoutlineの個数
Type xs:positiveInteger
Properties
use required
Used by
Element ahp:outlines
Source
<xs:attribute name="child-count" type="xs:positiveInteger" use="required">
  <xs:annotation>
    <xs:documentation xml:lang="en">Number of child outline</xs:documentation>
    <xs:documentation xml:lang="ja">子供のoutlineの個数</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outlines / @ahp:child-first
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
先頭の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
Type xs:ID
Properties
use optional
Used by
Element ahp:outlines
Source
<xs:attribute name="child-first" type="xs:ID" use="optional">
  <xs:annotation>
    <xs:documentation xml:lang="en">Outline ID of the first child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
    <xs:documentation xml:lang="ja">先頭の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outlines / @ahp:child-last
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
最終の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
Type xs:ID
Properties
use optional
Used by
Element ahp:outlines
Source
<xs:attribute name="child-last" type="xs:ID" use="optional">
  <xs:annotation>
    <xs:documentation xml:lang="en">Outline ID of the last child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
    <xs:documentation xml:lang="ja">最終の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:destination / @ahp:uri
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Type xs:anyURI
Properties
use optional
Used by
Element ahp:destination
Source
<xs:attribute name="uri" type="xs:anyURI" use="optional"/>
Attribute @ahp:destinationType
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
宛先タイプ
Type restriction of xs:string
Properties
content simple
Facets
enumeration XYZ
ページの座標(left,top)
enumeration Fit
ページの全体をフィット
enumeration FitH
上の座標 top ページの幅にフィット
enumeration FitV
左の座標 left ページの高さにフィット
enumeration FitR
表示領域は(left bottom right top)
Used by
Element ahp:destination
Source
<xs:attribute name="destinationType">
  <xs:annotation>
    <xs:documentation xml:lang="en">Destination Type</xs:documentation>
    <xs:documentation xml:lang="ja">宛先タイプ</xs:documentation>
  </xs:annotation>
  <xs:simpleType>
    <xs:restriction base="xs:string">
      <xs:enumeration value="XYZ">
        <xs:annotation>
          <xs:documentation xml:lang="en">Page Coordinate (left, top)</xs:documentation>
          <xs:documentation xml:lang="ja">ページの座標(left,top)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="Fit">
        <xs:annotation>
          <xs:documentation xml:lang="en">Fit in an entire page</xs:documentation>
          <xs:documentation xml:lang="ja">ページの全体をフィット</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FitH">
        <xs:annotation>
          <xs:documentation xml:lang="en">Top coordinate Fit to the page height</xs:documentation>
          <xs:documentation xml:lang="ja">上の座標 top ページの幅にフィット</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FitV">
        <xs:annotation>
          <xs:documentation xml:lang="en">Left coordinate Fit to the page width</xs:documentation>
          <xs:documentation xml:lang="ja">左の座標 left ページの高さにフィット</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FitR">
        <xs:annotation>
          <xs:documentation xml:lang="en">View Range(left, bottom, right, top)</xs:documentation>
          <xs:documentation xml:lang="ja">表示領域は(left bottom right top)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
</xs:attribute>
Attribute ahp:outline / @ahp:outline-id
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
outlineに一意につけられる識別値
Type xs:ID
Properties
use required
Used by
Element ahp:outline
Source
<xs:attribute name="outline-id" type="xs:ID" use="required">
  <xs:annotation>
    <xs:documentation xml:lang="en">A unique identifier given to outline</xs:documentation>
    <xs:documentation xml:lang="ja">outlineに一意につけられる識別値</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outline / @ahp:child-count
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
子供のoutlineの個数
Type xs:positiveInteger
Properties
use required
Used by
Element ahp:outline
Source
<xs:attribute name="child-count" type="xs:positiveInteger" use="required">
  <xs:annotation>
    <xs:documentation xml:lang="en">Number of child outline</xs:documentation>
    <xs:documentation xml:lang="ja">子供のoutlineの個数</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outline / @ahp:child-first
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
先頭の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
Type xs:ID
Properties
use optional
Used by
Element ahp:outline
Source
<xs:attribute name="child-first" type="xs:ID" use="optional">
  <xs:annotation>
    <xs:documentation xml:lang="en">Outline ID of the first child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
    <xs:documentation xml:lang="ja">先頭の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outline / @ahp:child-last
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
最終の子供のoutlineのID
child-countが1以上の場合は、存在しなければならない。
child-countが1の場合は、child-firstとchild-lastは等しい。
Type xs:ID
Properties
use optional
Used by
Element ahp:outline
Source
<xs:attribute name="child-last" type="xs:ID" use="optional">
  <xs:annotation>
    <xs:documentation xml:lang="en">Outline ID of the last child When child-count is more than 1, it has to exist. When child-count is 1, child-first and child-last are identical.</xs:documentation>
    <xs:documentation xml:lang="ja">最終の子供のoutlineのID child-countが1以上の場合は、存在しなければならない。 child-countが1の場合は、child-firstとchild-lastは等しい。</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outline / @ahp:parent
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
親のoutlineのID
Type xs:ID
Properties
use required
Used by
Element ahp:outline
Source
<xs:attribute name="parent" type="xs:ID" use="required">
  <xs:annotation>
    <xs:documentation xml:lang="en">Outline ID of the parent</xs:documentation>
    <xs:documentation xml:lang="ja">親のoutlineのID</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outline / @ahp:previous
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
前のoutlineのID
先頭のoutlineには、存在しない。
Type xs:ID
Properties
use optional
Used by
Element ahp:outline
Source
<xs:attribute name="previous" type="xs:ID" use="optional">
  <xs:annotation>
    <xs:documentation xml:lang="en">ID of the previous outline It does not exist in the first outline.</xs:documentation>
    <xs:documentation xml:lang="ja">前のoutlineのID 先頭のoutlineには、存在しない。</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outline / @ahp:next
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
次のoutlineのID
最後のoutlineには、存在しない。
Type xs:ID
Properties
use optional
Used by
Element ahp:outline
Source
<xs:attribute name="next" type="xs:ID" use="optional">
  <xs:annotation>
    <xs:documentation xml:lang="en">ID of the next outline It does not exist in the Last outline.</xs:documentation>
    <xs:documentation xml:lang="ja">次のoutlineのID 最後のoutlineには、存在しない。</xs:documentation>
  </xs:annotation>
</xs:attribute>
Attribute ahp:outline / @ahp:title
Namespace http://www.antennahouse.com/names/PDF/AHPDFXML
Annotations
タイトル
Type xs:string
Properties
use required
Used by
Element ahp:outline
Source
<xs:attribute name="title" type="xs:string" use="required">
  <xs:annotation>
    <xs:documentation xml:lang="en">Title</xs:documentation>
    <xs:documentation xml:lang="ja">タイトル</xs:documentation>
  </xs:annotation>
</xs:attribute>