Difference between revisions of "PRINT HTML()"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 22: | Line 22: | ||
</code> | </code> | ||
+ | <pre> | ||
<table> | <table> | ||
<tr> | <tr> | ||
Line 33: | Line 34: | ||
</tr> | </tr> | ||
</table> | </table> | ||
+ | </pre> | ||
Revision as of 10:07, 17 November 2009
Purpose
Display object as HTML
Syntax
PRINT_HTML(<object-ref>)
See Also
ACLASS(), ADDPROPERTY(), AMEMBERS(), ARRAY(), CLASS, COMPOBJ(), CREATEOBJECT(), DEFINE CLASS, DODEFAULT(), METHOD, NEWOBJECT(), OBJECT(), PRINT_JSON(), PRINT_R(), PRINT_XML(), REMOVEPROPERTY(), SET CLASSLIBRARY, WITH
Description
The PRINT_HTML() function is used to display the specified object, <object-ref>, in HTML.
Example
open database southwind select * from shippers into object shipobj print_html(shipobj)
<table> <tr> <td>1</td><td>Speedy Express</td><td>(503) 555-9831</td> </tr> <tr> <td>2</td><td>United Package</td><td>(503) 555-3199</td> </tr> <tr> <td>3</td><td>Federal Shipping</td><td>(503) 555-9931</td> </tr> </table>
Products
Recital, Recital Server