setHyperlinkCell

setHyperlinkCell(hyperlinkRow:    Integer;
                 hyperlinkColumn: Integer);

The setHyperlinkCell method of the Table class sets up a HyperText link for a cell in a table.

The setHyperlinkCell method is ignored for JADE applications that are Web-enabled. For these applications, you should use the hyperlinkColumn array property of the Table class.

The hyperlinkRow and hyperlinkColumn parameters specify the cell in which the HyperText link is set. You can set HyperText links in more than one cell for a row.

The code fragment in the following example shows the use of the setHyperlinkCell method.

elseif checkbox.value then
    table1.setHyperlinkCell(table1.row, table1.column);
else
    table1.resetHyperlinkCell(table1.row, table1.column);
endif;

In a standard GUI application, the behavior of a cell with a HyperText link is as follows.

In a JADE forms Web-enabled application, the HyperText link is displayed in the Web browser in a standard way. There are two points to note: