Difference between revisions of "PRINT HTML()"

From Recital Documentation Wiki
Jump to: navigation, search
 
Line 16: Line 16:
 
==Description==
 
==Description==
 
The PRINT_HTML() function is used to display the specified object, <object-ref>, in HTML.
 
The PRINT_HTML() function is used to display the specified object, <object-ref>, in HTML.
 +
  
 
==Example==
 
==Example==
Line 37: Line 38:
 
</pre>
 
</pre>
 
<code lang="recital">
 
<code lang="recital">
class NullData dynamic
 
    property mCHARACTER
 
    property mNUMERIC
 
endclass
 
  
oNULLDATA = new NullData()
 
oNULLDATA.mCHARACTER = ""
 
oNULLDATA.mNUMERIC = 0
 
oNULLDATA.mLOGICAL = .F.
 
print_r(oNULLDATA)
 
</code>
 
<pre>
 
Object (refcnt=0)
 
(
 
    [mcharacter] =>
 
    [mnumeric] => 0
 
    [mlogical] => False
 
)
 
</pre>
 
  
 
==Products==
 
==Products==
Line 62: Line 45:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Objects]]
 
[[Category:Objects]]
[[Category:Objects Functions]]
+
[[Category:Objects Functions]]</code>

Revision as of 13:07, 6 November 2009

Template:YLM to do Template:SELECT INTO OBJECT?

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
[[Category:Documentation]]
[[Category:Functions]]
[[Category:Objects]]
[[Category:Objects Functions]]