iconAlt - Icon Alternate Text

Specifies descriptive text for an icon.

Category

accessibility

Syntax

iconAlt="description"

Usage

In Design mode, click the top tab under Properties and look for Specify image for button and Icon alt text, or click All Properties and look for iconAlt under accessibility.

If you compute this value, return a string.

Examples

This Button control provides an icon with alternate text.
<xp:button id="button2" value="Save and Exit" icon="/folder.gif" iconAlt="Folder">
	<xp:eventHandler event="onclick" submit="true" refreshMode="complete">
		<xp:this.action>
			<xp:save name="/xpage2.xsp"></xp:save>
		</xp:this.action>
	</xp:eventHandler>
</xp:button>