<Textarea>

The Textarea tag renders as a multi-line text input box at run time.

Syntax

<Textarea  
    AccessKey="string"
    BackColor="color name|#dddddd"
    BorderColor="color name|#dddddd"
    BorderStyle="NotSet|None|Dotted|Dashed|Solid|Double|Groove|Ridge|Inset|Outset"
    BorderWidth="size"
    CharacterCount="None|CountDown|CountUp"
    CharacterCountClass="CSS Class Name"     CharacterCountLabel="string"
    Columns="integer"
    CssClass="string"
    DataField="string"     DataType="string|int32|int64|boolean|...."
    Font-Bold="True|False"
    Font-Italic="True|False"
    Font-Names="string"
    Font-Overline="True|False"
    Font-Size="string|Smaller|Larger|XX-Small|X-Small|Small|Medium|Large|X-Large|XX-Large"
    Font-Strikeout="True|False"
    Font-Underline="True|False"
    ForeColor="color name|#dddddd"
    Height="size"
    HtmlEncode="True|False"
    ID="string"
    MaxLength="integer"
    Nullable="True|False"
    ReadOnly="True|False"
    Rows="integer"
    Style="string"
    TabIndex="integer"
    ToolTip="string"
    Visible="True|False"
    Width="size
    Wrap="True|False"
/> 
 

Remarks

If no "datatype" is supplied, the Textarea control defaults to string.

Back to top

Example

<addform>
  ...
  <table>
    <tr>
      <td>
        <label for="txtFirstName" text="First Name" />
        <textbox id="txtFirstName" datafield="FirstName" datatype="string" />
      </td>
    </tr>
    <tr>
       <td>
         <label for="txtBio" text="Bio" />
         <textarea id="txtBio" datafield="Bio" datatype="string" />
       </td>
    </tr>
    <tr>
       <td colspan="2">
         <addbutton text="Add"/> <cancelbutton text="Cancel"/>
      </td>
    </tr>
  </table>
</addform>
Back to top