Start change Textarea tag

The following is the basic syntax of the textarea tag :

<TEXTAREA name=name>

where name identifies the text area programmatically.

The textarea tag can be expanded with the following elements:
<TEXTAREA name=name>
	<TITLE>title</TITLE>
	<LOCATION>location</LOCATION>
	<SIZE>size</SIZE>
	<DATACLASS>class_name</DATACLASS>
	<ATTRIBUTE>attribute_name</ATTRIBUTE>
	<SHORT></SHORT>
	<INTEGER></INTEGER>
	<LONG></LONG>
	<FLOAT></FLOAT>
	<STRING></STRING>
	<FORMAT></FORMAT>
	<FLYOVER>helptext</FLYOVER>
	<HELPALIAS>component_name</HELPALIAS>
</TEXTAREA>
	
ATTRIBUTEVALUEDESCRIPTION
<TITLE> title Displays the text string in the text area label.

Title defines the key for loading the text string from the resource bundle. If the string is not found, the title string will appear as it does in the Panel Definition Markup Language (PDML) source file.

<LOCATION> location Expresses the x- and y-coordinates of the panel's location from the top left corner in logical units.

This tag is required.

<SIZE> size Expresses the width and height, respectively, of the component in logical units.

This tag is required.

<DATACLASS> class_name Supplies the data for the text area, using the DataBean interface.
<ATTRIBUTE> attribute_name Contains the data for the text area. If the dataclass tag is used, the attribute tag must be used.

GETTOR PROTOCOLS:
String get<attribute_name>()
where the return value is the string to be inserted into the text area.


SETTOR PROTOCOLS:
void set<attribute_name>(String text)
where text is the string that was extracted from the text area.
<SHORT> See the data format tags.
<INTEGER> See the data format tags.
<LONG> See the data format tags.
<FLOAT> See the data format tags.
<STRING> See the data format tags.
<FORMAT> See the data format tags.
<FLYOVER> helptext Should be displayed when context help is requested for this component.
<HELPALIAS> component_name Should be displayed when context help is requested for this component.
End change


[ Legal | AS/400 Glossary ]