tableAddData(attr: String; data: String): String;
The tableAddData method of the JadeHTMLClass class returns a string containing the <td> tag attributes and data that are set by the attr and data parameters.
The parameters in this method are listed in the following table.
Parameter | Description |
---|---|
attr | <td> tag attributes |
data | <td> tag data |
The code fragment in the following example shows the use of the tableAddData method.
tableAddData("align=right", "203.30");
This example returns the following.
<td align=right> 203.30 </td>