<sas:IText>
This tag is used for creating an IText text element for use with a variety of markuplanguages (including WML,HDML, and HTML). The user can use this class to write an ITextwithout having to know the markup language that is to reference the page.
Syntax
<sas:IText
[acceptLabel="java.lang.String"]
[acceptURL="java.lang.String"]
[alignment="java.lang.String"]
[cacheTimeToLive="int"]
[customAttributes="java.lang.String"]
[epilog="java.lang.String"]
[id="value"]
[instantiate="true|false"]
[locale="java.util.Locale"]
[name="java.lang.String"]
[objectDataProperty="java.lang.String"]
[prolog="java.lang.String"]
[ref="java.lang.String"]
[render="true|false"]
[scope="page|request|session|application"]
[title="java.lang.String"]>
[<sas:IOption .../>]
[<sas:SetProperty ...>
The value to set on the parent tag
</sas:SetProperty>]
[Additional <sas:IOption>, <sas:SetProperty> tags...]
[One or more lines of output text to be set on this tag]
</sas:IText>
Example
<%@taglib uri="http://www.sas.com/taglib/sas" prefix="sas"%>
<sas:IText>
Hello World!
</sas:IText>
Attributes
acceptLabel | The label of the softkey button or link. |
---|---|
acceptURL | The acceptURL href String |
alignment | The horizontal alignment of the text ("Left"(default), "Right", or "Center"). |
cacheTimeToLive | The cacheTimeToLive in seconds of the bean. |
customAttributes | a list of attributes in the form of attribute="value", space delimited |
epilog | Text that is output immediately after the last markup tag. |
id | Case-sensitive name used to identify the object instance. |
instantiate | Flag that, if true, indicates that a new instance of the underlying class should be loaded if one cannot be found in PageContext. Must be used with an id attribute. |
locale | Specifies the locale to use for this instance of the class. |
name | Value assigned to the markup tag's name attribute. |
objectDataProperty | Value assigned to the output tag's objectDataProperty attribute. |
prolog | Text that is output immediately preceeding the first markup tag. |
ref | The variable String value that represents an object created earlier in the same scope. |
render | Flag that, if true, indicates that the complete markup of the bean is output when the tag is closed. It also sets the the visible property on the underlying TransformationBean. |
scope | The scope (or page context) within which the reference is available. |
title | The title of the bean. |
More Information
To view the documentation for the related TransformationBean, see com.sas.servlet.tbeans.ipage.IText.
If you need to subclass the tag handler class for the sas:IText tag, extend com.sas.taglib.servlet.tbeans.ipage.ITextTag.