<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>CFSLIDER</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">CFSLIDER</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>
一定の範囲から数値を選択するためのスライダコントロールを ColdFusion フォーム内に配置します。このスライダは、スライダの溝に沿って移動します。ユーザーがスライダを動かすと、現在の値が表示されます。cfform タグ内で使用します。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>
フォームタグ
</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;cfslider
name = &quot;name&quot;
   label = &quot;text&quot;
   range = &quot;min_value, max_value&quot;
   scale = &quot;uinteger&quot;
   value = &quot;integer&quot;
   onValidate = &quot;script_name&quot;
   message = &quot;text&quot;
   onError = &quot;text&quot;
   height = &quot;integer&quot;
   width = &quot;integer&quot;
   vSpace = &quot;integer&quot;
   hSpace = &quot;integer&quot;
   align = &quot;alignment&quot;
   lookAndFeel = &quot;motif&quot;、&quot;windows&quot;、&quot;metal&quot; のいずれか
   vertical = &quot;yes&quot;、&quot;no&quot;
   bgColor = &quot;color&quot;
   textColor = &quot;color&quot;
   font = &quot;font_name&quot;
   fontSize = &quot;integer&quot;
   italic = &quot;yes&quot;、&quot;no&quot;
   bold = &quot;yes&quot;、&quot;no&quot;
   notSupported = &quot;text&quot;&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、cfcalendar、cfform、cfformgroup、cfformitem、cfgrid、cfinput、cfselect、cftextarea、cftree、『ColdFusion MX 開発ガイド』の第26章の「データの取得および形式設定について」 および第27章の「cfform タグによるダイナミックフォームの作成」 
</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: img、imgStyle、grooveColor、refreshLabel、tickmarklabels、tickmarkmajor、tickmarkminor、および tickmarkimages の各属性が使用禁止になりました。これらの属性は今後のリリースでは機能せず、エラーが発生する可能性があります。
</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>
このタグを使用する場合は、クライアントで Java アプレットをダウンロードする必要があります。このタグを使用すると、同じ情報を表示するのに HTML の form 要素を使用する場合よりも処理速度が少し遅くなる可能性があります。また、クライアントに最新の Java プラグインがインストールされていない場合、タグを表示するために最新の Java プラグインをダウンロードしなければならないこともあります。
</p>

<p>
このタグを正しく動作させるには、JavaScript 対応のブラウザを使用する必要があります。
</p>

<p>
次の条件を満たす場合、このタグのオプションとして挿入されるユーザーが選択したクエリーデータからの値は、ユーザーがフォームを送信した後も継続して表示されます。 
</p>
<ul>

<li>cfform の preserveData 属性が &quot;Yes&quot; に設定されている場合</li>

<li>cfform の action 属性がフォーム自身と同じページ (デフォルト) に送信される場合、または、ユーザー入力フォーム上のコントロールと同じ名前のコントロールを持つフォームがアクションページ上にある場合</li>
</ul>

<p>
詳細については、cfform タグのエントリを参照してください。 
</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><pre>&lt;!--- この例は cfform 内での cfslider の使用方法を示します。 ---&gt;
&lt;h3&gt;cfslider の例&lt;/h3&gt;
&lt;p&gt;cfform 内で cfslider を使用すると、 
   Java を使用可能なブラウザに機能を提供できます。
&lt;p&gt;スライダを前後に動かして、値がリアルタイムに変化することを確認してください。 
   次に、フォームを送信して、cfslider によってその値が新しいページにどのように渡されるかを示してください。
&lt;cfif isdefined(&quot;form.mySlider&quot;) is true&gt;
   &lt;h3&gt;   &lt;cfoutput&gt;#mySlider#&lt;/cfoutput&gt;&lt;/h3&gt;
   もう一度試してください。
&lt;/cfif&gt;
&lt;cfform action = &quot;cfslider.cfm&quot;&gt;
   &lt;cfslider name = &quot;mySlider&quot; value = &quot;12&quot; 
      label = &quot;実際のスライダ値&quot;
      range = &quot;1,100&quot; align = &quot;BASELINE&quot; 
      message = &quot;バーをスライドして、1 ～ 100 の値を選択してください。&quot; 
      height = &quot;50&quot;       width = &quot;150&quot; font = &quot;Verdana&quot; 
      bgColor = &quot;Silver&quot; bold = &quot;No&quot; 
      italic = &quot;Yes&quot; refreshLabel = &quot;Yes&quot;&gt; 100
&lt;p&gt;&lt;input type = &quot;Submit&quot; name = &quot;&quot; value = &quot;結果の表示&quot;&gt;
&lt;/cfform&gt;
</pre>
         </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>cfslider コントロールの名前です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="LABEL">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">LABEL</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>コントロールと共に表示されるラベルです。たとえば、&quot;Volume&quot; というラベルを指定すると、&quot;Volume %value%&quot; と表示されます。</p>
<p>値を参照するには、&quot;%value%&quot; を使用します。%% を省略すると、ラベルの直後にスライダ値が表示されます。</p>

  </td>
  </tr>
  </table>
</div>
<div id="RANGE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">RANGE</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> "&quot;0,100&quot;"


<p>スライダの範囲の数値です。 </p>
<p>値をカンマで区切ってください。</p>

  </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">



<p>符号なし整数です。range 内でスライダのスケールを定義します。たとえば、range = &quot;0,1000&quot; および scale = &quot;100&quot; の場合、表示の値は次のようになります。<br>0, 100, 200, 300, ...</p>
<p>ColdFusion の符号付きおよび符号なしの整数は、-2,147,483,648 ～ 2,147,483,647 の範囲です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="VALUE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">VALUE</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> "範囲内の最小値"


<p>スライダの開始値です。range 属性の値の範囲内の値にする必要があります。</p>

  </td>
  </tr>
  </table>
</div>
<div id="ONVALIDATE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">ONVALIDATE</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>ユーザー入力 (この場合は、デフォルトのスライダ値への変更) を検証するカスタムの JavaScript 関数です。 </p>
<p>関数名のみを指定します。</p>

  </td>
  </tr>
  </table>
</div>
<div id="MESSAGE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">MESSAGE</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>

  </td>
  </tr>
  </table>
</div>
<div id="ONERROR">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">ONERROR</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>検証に失敗した場合に実行するカスタム JavaScript 関数です。 </p>
<p>関数名のみを指定します。</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">

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


<p>スライダコントロールの高さです (単位 : ピクセル)。</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">



<p>スライダコントロールの幅です (単位 : ピクセル)。 </p>

  </td>
  </tr>
  </table>
</div>
<div id="VSPACE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">VSPACE</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>

  </td>
  </tr>
  </table>
</div>
<div id="HSPACE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">HSPACE</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>

  </td>
  </tr>
  </table>
</div>
<div id="ALIGN">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">ALIGN</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>top</li>

<li>left</li>

<li>bottom</li>

<li>baseline</li>

<li>texttop</li>

<li>absbottom</li>

<li>middle</li>

<li>absmiddle</li>

<li>right</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="LOOKANDFEEL">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">LOOKANDFEEL</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> "Windows"

<ul>

<li>motif: Motif スタイルを使用してスライダを表示します。</li>

<li>windows: Windows スタイルを使用してスライダを表示します。</li>

<li>metal: Java Swing スタイルを使用してスライダを表示します。</li>
</ul>

<p>プラットフォームでこの選択肢がサポートされていない場合は、プラットフォームのデフォルトのスタイルが適用されます。 </p>

  </td>
  </tr>
  </table>
</div>
<div id="VERTICAL">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">VERTICAL</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"

<ul>

<li>Yes: スライダをブラウザに垂直に表示します。width 属性および height 属性を設定する必要があります。ColdFusion では、width および height の値は自動的には交換されません。</li>

<li>No: スライダは水平に表示されます。 </li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="BGCOLOR">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">BGCOLOR</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>
<p>16 進数の値については、bgColor = &quot;##xxxxxx&quot; の形式を使用します。ここで、x は 0 ～ 9 または A ～ F です。シャープ記号 (#) は 2 つ使用するか、または使用しないでください。</p><ul>

<li>16 進数形式の任意の色</li>

<li>black</li>

<li>red</li>

<li>blue</li>

<li>magenta</li>

<li>cyan</li>

<li>orange</li>

<li>darkgray</li>

<li>pink</li>

<li>gray</li>

<li>white</li>

<li>lightgray</li>

<li>yellow</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="TEXTCOLOR">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">TEXTCOLOR</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>オプション: bgcolor 属性と同様です。</p>

  </td>
  </tr>
  </table>
</div>
<div id="FONT">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">FONT</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>

  </td>
  </tr>
  </table>
</div>
<div id="FONTSIZE">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">FONTSIZE</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>

  </td>
  </tr>
  </table>
</div>
<div id="ITALIC">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">ITALIC</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"

<ul>

<li>Yes: イタリックで表示するラベルテキストです。</li>

<li>No: 標準テキストです。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="BOLD">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">BOLD</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"

<ul>

<li>Yes: ボールドで表示するラベルテキストです。</li>

<li>No: 標準テキストです。</li>
</ul>


  </td>
  </tr>
  </table>
</div>
<div id="NOTSUPPORTED">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>  
<td valign="top" class="name">NOTSUPPORTED</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>Java アプレットベースの cfform コントロールが含まれているページを、Java がサポートされていないブラウザや、Java のサポートが無効になっているブラウザで開いた場合に表示するテキストです。例 : </p>
<p>&quot;&lt;b&gt; ColdFusion Java アプレットを表示するには、ブラウザで Java がサポートされていなければなりません。&lt;/b&gt;&quot;</p>
<p>デフォルトのメッセージ: </p>
<p>&lt;b&gt;ColdFusion Java アプレットを表示するには、&lt;br&gt;ブラウザが Java をサポートしている必要があります。&lt;/b&gt;</p>

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

  </body>
</html>
