PRINT HTML()
From Recital Documentation Wiki
Revision as of 15:09, 14 December 2009 by Yvonnemilne (Talk | contribs)
Purpose
Display object as HTML
Syntax
PRINT_HTML(<object-ref>)
See Also
ACLASS(), ADDPROPERTY(), AMEMBERS(), CLASS, CLASS - Methods, CLASS - Parameters, CLASS - Properties, CLASS - Scoping, COMPOBJ(), CREATEOBJECT(), DEFINE CLASS, DISPLAY CLASSES, DODEFAULT(), FOREACH, LIST CLASSES, LOADOBJECT(), METHOD, NEWOBJECT(), OBJECT(), PRINT_JSON(), PRINT_R(), PRINT_XML(), REMOVEPROPERTY(), REQUIRE_ONCE(), SAVEOBJECT(), SQL SELECT, 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