19.9. Hyperlinks

Hyperlinks are nested within columns (for iteration) or inside worksheets (for direct placement using the startColumn/startRow and endColumn/endRow attributes). They add link navigation to URIs.
<e:hyperlink>
Attributes
  • startColumn — A number value denoting the column in which the hyperlink starts. The default is the internal counter. The number value is 0-based.
  • startRow — A number value denoting the row in which the hyperlink starts. The default is the internal counter. The number value is 0-based.
  • endColumn — A number value denoting the column in which the hyperlink ends. The default is the internal counter. The number value is 0-based.
  • endRow — A number value denoting the row in which the hyperlink ends. The default is the internal counter. The number value is 0-based.
  • URL — A string value denoting the URL to link.
  • description — A string value describing the link. string.
Child elements
  • none
Facets
  • none
 
<e:workbook> 
  <e:worksheet> 
    <e:hyperLink startRow="0" startColumn="0" endRow="4" endColumn="4" 
       URL="http://seamframework.org" description="The Seam Framework"/> 
  </e:worksheet> 
</e:workbook>
This defines a described hyperlink pointing to Seam Framework in the area A1:E5.