<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="mmres://user_interface_reference.css" rel="stylesheet" type="text/css">
<title>CFDOCUMENT</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
   <div id="説明">
   <table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
      <tr> 
         <td valign="top" class="name">CFDOCUMENT</td>
         <td valign="top" nowrap class="compatibility">&nbsp;</td>
      </tr>
      <tr>
         <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
      </tr>


    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">説明</span>
<p>
CFML および HTML を含むテキストブロックから PDF または FlashPaper 形式の出力を作成します。
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">カテゴリ</span>
<p>
データ出力タグ
</p>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="syntax"><span class="title">シンタックス</span><pre>&lt;cfdocument
   format = &quot;PDF&quot;、&quot;FlashPaper&quot;
   filename = &quot;filename&quot;
   overwrite = &quot;yes&quot;、&quot;no&quot;
   name = &quot;output variable name&quot;
   pagetype = &quot;page type&quot;
   pageheight = &quot;page height in inches&quot;
   pagewidth = &quot;page width in inches&quot;
   orientation = &quot;portrait/landscape&quot;
   margintop = &quot;number&quot;
   marginbottom = &quot;number&quot;
   marginleft = &quot;number&quot;
   marginright = &quot;number&quot;
   unit = &quot;in&quot;、&quot;cm&quot;
   encryption = &quot;128-bit&quot;、&quot;40-bit&quot;、&quot;none&quot;
   ownerpassword = &quot;password&quot;
   userpassword = &quot;password&quot;
   permissions = &quot;permission list&quot;
   fontembed = &quot;yes&quot;、&quot;no&quot;
   backgroundvisible = &quot;yes&quot;、&quot;no&quot;
   scale = &quot;percentage less than 100&quot;&gt;

   HTML および CFML コード
&lt;/cfdocument&gt;
</pre>    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">関連項目</span>
<p>
cfreport、cfdocumentitem、cfdocumentsection
</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">ヒストリ</span>
<p>
ColdFusion&#160;MX&#160;7: このタグが追加されました。
</p>

<p>

</p>
    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">使用方法</span>
<p>
cfdocument タグを使用して、HTML および CFML の出力を PDF または FlashPaper 形式で表示します。ColdFusion MX は、HTML と CFML を &lt;cfdocument&gt; &lt;/cfdocument&gt; ペアの外側には返しません。
</p>

<p>
cfdocument タグでは、次の標準をサポートする HTML を表示できます。
</p>
<ul>

<li>HTML 4.01</li>

<li>XML 1.0 </li>

<li>DOM Level 1 および 2 </li>

<li>CSS1 および CSS2</li>
</ul>

<p>
cfdocument タグは、Microsoft Word で生成された Internet Explorer 固有の HTML をサポートしません。
</p>

<p>
cfdocument タグで返された PDF または FlashPaper 形式のドキュメントにより、入力ストリーム内の既存の HTML は上書きされ、&lt;/cfdocument&gt; タグの後の HTML は無視されます。
</p>

<p>
cfreport タグを cfdocument タグに埋め込むことはできません。
</p>

<p>
cfdocument タグを使用するときに、ColdFusion MX は cfdocument という名前の新しいスコープを作成します。このスコープには、次の変数が含まれています。
</p>
<ul>

<li>currentpagenumber</li>

<li>totalpagecount</li>
</ul>
<table>
  <tr valign="top">
    <td width="30"><strong>メモ: </strong></td>
    <td>cfdocument スコープ変数は、ページ番号の表示のために予約されています。これらを ColdFusion の式で使用しないでください。たとえば、次のようなコードは機能しません。</td>
  </tr>
</table><pre>&lt;cfif cfdocument.currentpagenumber gt 1&gt;
   &lt;cfoutput&gt;#cfdocument.currentpagenumber-1#&lt;/cfoutput&gt;
&lt;/cfif&gt;
</pre>    </td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top" colspan="2" class="description"><span class="title">例</span><pre>&lt;cfdocument format=&quot;flashpaper&quot;&gt;
&lt;p&gt;これは、cfdocument tag によって表示されるドキュメントです。&lt;/p&gt;

&lt;table width=&quot;50%&quot; border=&quot;2&quot; cellspacing=&quot;2&quot; cellpadding=&quot;2&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;&lt;strong&gt;名前&lt;/strong&gt;&lt;/td&gt;
    &lt;td&gt;&lt;strong&gt;ロール&lt;/strong&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Bill&lt;/td&gt;
    &lt;td&gt;リード&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Susan&lt;/td&gt;
    &lt;td&gt;主任ライター&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Adelaide&lt;/td&gt;
    &lt;td&gt;パートタイムのシニアライター&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Thomas&lt;/td&gt;
    &lt;td&gt;6 か月フルタイム&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Michael&lt;/td&gt;
    &lt;td&gt;4 か月フルタイム&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/cfdocument&gt; 
</pre>
         </td>
      </tr>
   </table>
   </div>
<div id="FORMAT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">FORMAT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">必須</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>レポートの形式を指定します。</p><ul>

<li>PDF</li>

<li>FlashPaper</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="FILENAME">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">FILENAME</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>PDF または FlashPaper 形式の出力を含むファイルの名前を指定します。</p>
<p>filename 属性を省略すると、ColdFusion&#160;MX は出力をブラウザに送ります。</p>

  </td>
  </tr>
  </table>
</div>
<div id="OVERWRITE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">OVERWRITE</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "no"


<p>ColdFusion&#160;MX で既存のファイルを上書きするかどうかを指定します。filename 属性と共に使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="NAME">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">NAME</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>タグが PDF 出力または FlashPaper 出力を保管する保管先の既存変数名を指定します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="PAGETYPE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">PAGETYPE</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "A4"


<p>ColdFusion で生成するレポートのページサイズを指定します。 </p><ul>

<li>legal: 8.5 インチ x 14 インチ</li>

<li>letter: 8.5 インチ x 11 インチ</li>

<li>A4: 8.27 インチ x 11.69 インチ</li>

<li>A5: 5.81 インチ x 8.25 インチ</li>

<li>B5: 9.81 インチ x 13.88 インチ</li>

<li>Custom: カスタムの高さと幅です。カスタムを指定する場合は、pageheight 属性と pagewidth 属性も指定する必要があります。必要に応じて、マージンに関する属性の指定や、単位をインチまたはセンチメートルのいずれにするかの指定もできます。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="PAGEHEIGHT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">PAGEHEIGHT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>ページの高さをインチ (デフォルト) またはセンチメートルを単位として指定します。この属性は、pagetype=custom の場合にのみ有効です。ページの高さをセンチメートル単位で指定するには、unit=cm 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="PAGEWIDTH">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">PAGEWIDTH</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>ページの幅をインチ (デフォルト) またはセンチメートルを単位として指定します。この属性は、pagetype=custom の場合にのみ有効です。ページの幅をセンチメートル単位で指定するには、unit=cm 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="ORIENTATION">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">ORIENTATION</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "portrait"


<p>ページの向きを指定します。</p><ul>

<li>portrait</li>

<li>landscape</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="MARGINTOP">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MARGINTOP</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>ページの上マージンをインチ (デフォルト) またはセンチメートルを単位として指定します。上マージンをセンチメートル単位で指定するには、unit=cm 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="MARGINBOTTOM">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MARGINBOTTOM</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>ページの下マージンをインチ (デフォルト) またはセンチメートルを単位として指定します。下マージンをセンチメートル単位で指定するには、unit=cm 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="MARGINLEFT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MARGINLEFT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>ページの左マージンをインチ (デフォルト) またはセンチメートルを単位として指定します。左マージンをセンチメートル単位で指定するには、unit=cm 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="MARGINRIGHT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MARGINRIGHT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>ページの右マージンをインチ (デフォルト) またはセンチメートルを単位として指定します。右マージンをセンチメートル単位で指定するには、unit=cm 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="UNIT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">UNIT</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "in"


<p>pageheight、pagewidth、および margin の各属性で使用するデフォルトの単位を指定します。</p><ul>

<li>in: インチです。</li>

<li>cm: センチメートルです。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="ENCRYPTION">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">ENCRYPTION</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "none"


<p>(format=&quot;PDF&quot; の場合のみ) 出力を暗号化するかどうかを指定します。</p><ul>

<li>128-bit</li>

<li>40-bit</li>

<li>none</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="OWNERPASSWORD">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">OWNERPASSWORD</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>(format=&quot;PDF&quot; の場合のみ) 所有者のパスワードを指定します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="USERPASSWORD">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">USERPASSWORD</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>(format=&quot;PDF&quot; の場合のみ) ユーザーのパスワードを指定します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="PERMISSIONS">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">PERMISSIONS</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>(format=&quot;PDF&quot; の場合のみ) 次のアクセス許可から 1 つ以上を指定します。</p><ul>

<li>AllowPrinting</li>

<li>AllowModifyContents</li>

<li>AllowCopy</li>

<li>AllowModifyAnnotations</li>

<li>AllowFillIn</li>

<li>AllowScreenReaders</li>

<li>AllowAssembly</li>

<li>AllowDegradedPrinting</li>
</ul>

<p>複数のアクセス許可を指定する場合は、カンマで区切ります。</p>

  </td>
  </tr>
  </table>
</div>
<div id="FONTEMBED">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">FONTEMBED</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "yes"


<p>ColdFusion が出力にフォントを埋め込むかどうかを指定します。</p><ul>

<li>yes: フォントを埋め込みます。</li>

<li>no: フォントを埋め込みません。</li>
</ul>

<p>Selective: Java フォントとコアフォント以外のすべてのフォントを埋め込みます。詳細については、「使用方法」を参照してください。</p>

  </td>
  </tr>
  </table>
</div>
<div id="BACKGROUNDVISIBLE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">BACKGROUNDVISIBLE</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "no"


<p>ドキュメントの出力時に背景を出力するかどうかを指定します。</p><ul>

<li>yes: 出力時に背景を含めます。</li>

<li>no: 出力時に背景を含めません。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="SCALE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">SCALE</td>
  <td valign="top" nowrap class="compatibility">&nbsp;</td>
  </tr>
  <tr>
  <td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
  </tr>

  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">オプション</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">

<strong>Default value:</strong> "ColdFusion が計算する値"


<p>スケール係数をパーセントで指定します。このオプションを使用して HTML 出力のサイズを縮小し、用紙のサイズに合うようにします。100 未満の数値を指定します。</p>

  </td>
  </tr>
  </table>
</div>

  </body>
</html>
