| Method from org.apache.poi.hssf.usermodel.HSSFHyperlink Detail: |
public String getAddress() {
return record.getAddress();
}
Hypelink address. Depending on the hyperlink type it can be URL, e-mail, patrh to a file, etc. |
public short getFirstColumn() {
return record.getFirstColumn();
}
Return the column of the first cell that contains the hyperlink |
public int getFirstRow() {
return record.getFirstRow();
}
Return the row of the first cell that contains the hyperlink |
public String getLabel() {
return record.getLabel();
}
Return text label for this hyperlink |
public short getLastColumn() {
return record.getLastColumn();
}
Return the column of the last cell that contains the hyperlink |
public int getLastRow() {
return record.getLastRow();
}
Return the row of the last cell that contains the hyperlink |
protected int getType() {
return link_type;
}
Return the type of this hyperlink |
public void setAddress(String address) {
record.setAddress(address);
}
Hypelink address. Depending on the hyperlink type it can be URL, e-mail, patrh to a file, etc. |
public void setFirstColumn(short col) {
record.setFirstColumn(col);
}
Set the column of the first cell that contains the hyperlink |
public void setFirstRow(int row) {
record.setFirstRow(row);
}
Set the row of the first cell that contains the hyperlink |
public void setLabel(String label) {
record.setLabel(label);
}
Sets text label for this hyperlink |
public void setLastColumn(short col) {
record.setLastColumn(col);
}
Set the column of the last cell that contains the hyperlink |
public void setLastRow(int row) {
record.setLastRow(row);
}
Set the row of the last cell that contains the hyperlink |