<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>CFFORMITEM</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">CFFORMITEM</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>
Flash フォームに水平線、垂直線、スペース、またはテキストを挿入します。Flash フォームおよび XML フォームの cfform または cfformgroup タグの本文で使用されます。HTML フォームでは無視されます。
</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;cfformitem
   type = &quot;hrule&quot;、&quot;vrule&quot;、&quot;spacer&quot;
   style = &quot;style specification&quot;
   width = &quot;pixels&quot;
   height = &quot;pixels&quot;
   visible = &quot;Yes&quot;、&quot;No&quot;/&gt;
</pre>
<p>
または、
</p>
<pre>&lt;cfformitem
   type= &quot;html&quot;、&quot;text&quot;
   style = &quot;style specification&quot;
   width = &quot;pixels&quot;
   height = &quot;pixels&quot;
   visible = &quot;Yes&quot;、&quot;No&quot;
   enabled = &quot;Yes&quot;、&quot;No&quot;
   tooltip = &quot;Tip text&quot;
   bind = &quot;bind expression&quot;&gt;
...<i>text
</i>&lt;/cfformitem&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>
cfapplet、cfform、cfformgroup、cfgrid、cfinput、cfselect、cfslider、cftextarea、cftree、『ColdFusion MX 開発ガイド』の第29章の「cfformitem タグによるテキスト、イメージ、罫線、およびスペースの追加」 の「cfformitem タグによるテキスト、イメージ、罫線、およびスペースの追加」
</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>
次の表に、Flash フォームの属性とその動作を示します。XML 形式の場合、特記なき限り、属性は XML に渡されますが、ColdFusion MX に同梱されている基本的な XSL スタイルシートでは解釈されません。
</p>
<table>
  <tr valign="top">
    <td width="30"><strong>メモ: </strong></td>
    <td>&quot;Flash の場合み&quot; と明記されている属性は、ColdFusion MX で提供されるスキンでは処理されません。ただし、text タイプと html タイプ以外のすべてのコントロールでは、これらの属性は生成された XML に含まれます。</td>
  </tr>
</table>
<p>

</p>
<table>
  <tr valign="top">
    <td width="30"><strong>メモ: </strong></td>
    <td>&quot;Flash の場合み&quot; と明記されている属性は、ColdFusion MX で提供されるスキンでは処理されません。ただし、text タイプと html タイプ以外のすべてのコントロールでは、これらの属性は生成された XML に含まれます。</td>
  </tr>
</table>    </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>
<pre>&lt;cfformitem type=&quot;hrule&quot; /&gt;
</pre>
<p>
Flash フォームでのこのタグの使用方法については、『ColdFusion MX 開発ガイド』の第29章の「Macromedia Flash 形式のフォームの作成」 を参照してください。
</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>
次の例は、水平方向の基準およびテキストを使った簡単な Flash フォームを示しています。
</p>
<pre>&lt;h3&gt;cfformitem の例&lt;/h3&gt;
&lt;cfform name=&quot;myform&quot; height=&quot;450&quot; width=&quot;500&quot; format=&quot;Flash&quot; &gt;
   &lt;cfformitem type=&quot;hrule&quot; /&gt;
   &lt;cfformitem type=&quot;text&quot;&gt;
      この簡単なフォームには、このテキストを含む cfformitem タグの周囲に 2 つの hrule cfformitem タグ
があります。
   &lt;/cfformitem&gt;
   &lt;cfformitem type=&quot;hrule&quot; /&gt;
&lt;/cfform&gt;
</pre>
<p>
さらに複雑なフォームについては、cfformgroupを参照してください。
</p>

         </td>
      </tr>
   </table>
   </div>
<div id="TYPE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">TYPE</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash および XML</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>Flash: </p><ul>

<li>html: テキストをフォーム内のこのタグの本文に配置します。Flash 形式の場合、次のテキスト書式設定タグをテキストで使用できます。これらのほとんどは HTML タグに対応しています。テキスト書式設定タグは、a、b、br、font、i、img、li、p、textformat、および u です。これらのテキスト書式設定タグの使い方については、Flash のドキュメントを参照してください。style 属性は、type のテキスト書式に影響しません。</li>

<li>text: マークアップを解釈せずに、テキストをフォーム内のこのタグの本文に配置します。style 属性を使用することにより、テキスト全体の外観を制御できます。</li>

<li>spacer: 指定した高さおよび幅を維持する非表示のスペーサをフォームに配置します。フォームコントロール間にスペースを配置するために使用します。このタグには子を使用しないでください。</li>

<li>hrule: 水平方向の基準をフォームに配置します。このタグには子を使用しないでください。</li>

<li>vrule: 垂直方向の基準をフォームに配置します。このタグには子を使用しないでください。</li>
</ul>

<p>XML: </p><ul>

<li>html: XML の xf:output 要素の CDATA セクションに CFML タグの本文テキストを配置します。</li>

<li>text: CFML タグの本文テキストで XML 書式 (&lt; などのエスケープ文字) を生成し、XML の xf:output 要素の CDATA セクションに配置します。</li>

<li>hrule: hr タグを出力に配置します。style 属性を使用して、高さや幅など、基準をすべて指定します。このタグには子を使用しないでください。</li>

<li>その他すべての文字列 : appearance 属性としてタイプ名を持つ XML xf:group 要素を生成します。CFML タグの本文が cf:attribute name=&quot;body&quot; 要素の CDATA セクションに配置されます。ColdFusion MX を使用して提供される XSL 変換では、これらの要素は無視されます。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="STYLE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">STYLE</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash および XML</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p><b>Flash</b>: </p>
<p>CSS 形式のスタイル仕様でなければなりません。</p>
<p>type 属性が html または text の場合は無視されます。</p>
<p>Flash スタイルの指定に関する詳細については、『ColdFusion MX 開発ガイド』の第29章の「Macromedia Flash 形式のフォームの作成」 を参照してください。spacer タイプと一緒には使用しません。</p>
<p><b>XML</b>: </p>
<p>ColdFusion は style 属性を XML に渡します。ColdFusion のスキンでは、生成された HTML に style 属性が含まれます。</p>

  </td>
  </tr>
  </table>
</div>
<div id="WIDTH">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">WIDTH</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>アイテムの幅です (単位 : ピクセル)。この属性を省略すると、Flash は幅を自動的にサイズ設定します。ColdFusion XSL のスキンでは、代わりに style 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="HEIGHT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">HEIGHT</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>アイテムの高さです (単位 : ピクセル)。この属性を省略すると、Flash は高さを自動的にサイズ設定します。ColdFusion XSL のスキンでは、代わりに style 属性を使用します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="ENABLED">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">ENABLED</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash</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>コントロールを有効にするかどうかを指定するブール値です。無効なコントロールはライトグレーで表示されます。スペーサとルールには影響しません。</p>

  </td>
  </tr>
  </table>
</div>
<div id="VISIBLE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">VISIBLE</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash</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>コントロールを表示するかどうかを指定するブール値です。表示されないコントロールが使用するスペースは空白です。スペーサには影響しません。</p>

  </td>
  </tr>
  </table>
</div>
<div id="TOOLTIP">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">TOOLTIP</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>マウスポインタをコントロールの上に置いたときに表示されるテキストです。スペーサには影響しません。</p>

  </td>
  </tr>
  </table>
</div>
<div id="BIND">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">BIND</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">
  <tr>
  <td valign="top" class="syntax">&nbsp;</td>
  <td valign="top" nowrap class="requirements">Flash</td>
  </tr>
  <tr>
  <td colspan="2" class="clearseparation">&nbsp;</td>
  </tr>
  <tr>
  <td valign="top" colspan="2" class="description">



<p>フィールドに他のフィールドからの情報を挿入する、Flash のバインド式です。この属性を使用する場合、ColdFusion MX は cftextitem タグの本文で指定されたテキストを無視します。この属性は、cfformitem タグが cfformgroup type=&quot;repeater&quot; タグ内にある場合に役立つことがあります。「使用方法」を参照してください。詳細については、cfinput タグの説明の「Flash フォームデータのバインディング」を参照してください。</p>

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

  </body>
</html>
