Sets the height of memo text fields by specifying the number of rows for the memo text field. For example:
Form |
<TCFIELD NAME="Comments" rows="10" /> |
Block |
<tc:field name="Comments" category="EMPL" rows="10" /> |
<tc:wizardParameter name="Comments" rows="10" /> |
Sets the width of memo text fields by specifying the number of columns for the memo text field. Enter a number to represent the width. For example:
Form |
<TCFIELD NAME="Comments" cols="125" /> |
Block |
<tc:field name="Comments" category="EMPL" cols="125" /> |
<tc:wizardParameter name="Comments" cols="125" /> |
Sets how line breaks are managed in memo text fields. The following values can be entered:
•OFF—Restricts the browser from wrapping text, which forces the user to do it manually.
•SOFT or VIRTUAL—Eliminates all the line break symbols from the element's value after the form is submitted. SOFT is only supported by Netscape Navigator browsers. VIRTUAL is only supported by Microsoft Internet Explorer browsers.
•HARD or PHYSICAL—Maintains all the line break symbols in the element's value when the form is submitted. HARD is only supported by Netscape Navigator browsers. PHYSICAL is only supported by Microsoft Internet Explorer browsers.
For example:
Form |
<TCFIELD NAME="Comments" wrap="OFF" /> |
Block |
<tc:field name="Comments" category="EMPL" wrap="OFF" /> |
<tc:wizardParameter name="Comments" wrap="OFF" /> |