Translation:Guides

From IDMLWiki

Jump to: navigation, search

10.3.7 ガイド

スプレッドには、ページオブジェクト以外にガイドを含めることができます。ガイドを使ってページオブジェクトを整列させたり、目印としてガイドをひくなど、ガイドの使いかたはInDesignのオンラインヘルプを参照してください。

スキーマの例40 ガイド
  1. Guide_Object = element Guide {
  2.   attribute Self { xsd:string },
  3.   attribute Orientation { HorizontalOrVertical_EnumValue }?,
  4.   attribute Location { xsd:double }?,
  5.   attribute FitToPage{  xsd:boolean }?,
  6.   attribute ViewThreshold{  xsd:double {minInclusive="5" maxInclusive="4000"} }?,
  7.   attribute Locked { xsd:boolean }?,
  8.   attribute ItemLayer{  xsd:string }?,
  9.   attribute PageIndex{  xsd:short }?,
  10.   element Properties {
  11.     element GuideColor{  InDesignUIColorType_TypeDef }?&
  12.     element Label { element KeyValuePair{  KeyValuePair_TypeDef }*
  13.   }
  14.   ?
  15. }
IDMLの例34 ガイド
  1. <Guide Self="ue4" Orientation="Horizontal" Location="72" FitToPage=" true" ViewThreshold=" 5" Locked="false" ItemLayer=" ub1" PageIndex=" 1">
  2.   <Properties>
  3.     <GuideColor type="enumeration">Cyan</GuideColor>
  4.   </Properties>
  5. </Guide>
表46 属性としてのGuideプロパティ
名前 必須 説明
FitToPage boolean trueのとき、ページガイド。falseのとき、スプレッドガイド
ItemLayer string ガイドをひくレイヤー
Location double 現在のルーラーの原点を基準にした位置
Locked boolean trueのとき、ガイドはロックされる
Orientation HorizontalOrVertical_EnumValue ガイドの方向。HorizontalまたはVertical
PageIndex short ガイドのあるページのインデックス
ViewThreshold double ガイドが表示されなくなる画面の拡大率(5.0-4000.0)
表47 エレメントとしてのGuideプロパティ
名前 必須 説明
GuideColor InDesignUIColorType_TypeDef ガイドのカラー。ListItemエレメント3つの配列(0-255のRGBの値またはUIColorの列挙)
Personal tools