Save This Page
Home » jexcelapi_2_6_8 » jxl » [javadoc | source]
jxl
public interface: Hyperlink [javadoc | source]

All Known Implementing Classes:
    WritableHyperlink, HyperlinkRecord

Hyperlink information. Only URLs or file links are supported Hyperlinks may apply to a range of cells; in such cases the methods getRow and getColumn return the cell at the top left of the range the hyperlink refers to. Hyperlinks have no specific cell format information applied to them, so the getCellFormat method will return null
Method from jxl.Hyperlink Summary:
getColumn,   getFile,   getLastColumn,   getLastRow,   getRange,   getRow,   getURL,   isFile,   isLocation,   isURL
Method from jxl.Hyperlink Detail:
 public int getColumn()
    Returns the column number of this cell
 public File getFile()
    Returns the local file eferenced by this Hyperlink
 public int getLastColumn()
    Returns the column number of the bottom right cell
 public int getLastRow()
    Returns the row number of the bottom right cell
 public Range getRange()
    Gets the range of cells which activate this hyperlink The get sheet index methods will all return -1, because the cells will all be present on the same sheet
 public int getRow()
    Returns the row number of this cell
 public URL getURL()
    Gets the URL referenced by this Hyperlink
 public boolean isFile()
    Determines whether this is a hyperlink to a file
 public boolean isLocation()
    Determines whether this is a hyperlink to a location in this workbook
 public boolean isURL()
    Determines whether this is a hyperlink to a web resource