Template file: Home.page
Class file: Home.php

/Controls/Samples/THtmlArea5/Home.page

<com:TContent ID="body">

<h1>THtmlArea5 Samples</h1>

<table class="sampletable">

<tr><td class="samplenote">
THtmlArea5 with default settings:
</td><td class="sampleaction">
<com:THtmlArea5 ID="HtmlArea1" />
<com:TButton Text="Submit" OnClick="button1Clicked" />
<br/>
<com:TLiteral Encode="true" ID="Result1" />
</td></tr>

<tr><td class="samplenote">
THtmlArea5 with manually set options
</td><td class="sampleaction">
<com:THtmlArea5 ID="HtmlArea2" Width="670px" Height="300px">
  <prop:Options>
  	resize: false
    plugins: "charmap code wordcount"
    toolbar: "undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | code charmap | ",
  </prop:Options>
</com:THtmlArea5>
<com:TButton Text="Submit" OnClick="button2Clicked" />
<br/>
<com:TLiteral Encode="true" ID="Result2" />
</td></tr>

<tr><td class="samplenote">
THtmlArea5 with visual editing disabled:
</td><td class="sampleaction">
<com:THtmlArea5 ID="HtmlArea3" EnableVisualEdit="false" />
<br/>
<com:TButton Text="Submit" OnClick="button3Clicked" />
<br/>
<com:TLiteral Encode="true" ID="Result3" />
</td></tr>

<tr><td class="samplenote">
Read-only THtmlArea:
</td><td class="sampleaction">
<com:THtmlArea5 ID="HtmlArea4" ReadOnly="true" Text="Sample html text: <b>bold</b> <i>italic</i>" />
</td></tr>

<tr><td class="samplenote">
Available languages:
</td><td class="sampleaction">
<com:TLiteral ID="labLanguages" Encode="true" />
</td></tr>

<tr><td class="samplenote">
Available plugins:
</td><td class="sampleaction">
<com:TLiteral ID="labPlugins" Encode="true" />
</td></tr>

<tr><td class="samplenote">
Available themes:
</td><td class="sampleaction">
<com:TLiteral ID="labThemes" Encode="true" />
</td></tr>

</table>

</com:TContent>