(63 out of 193)
SaListHead
Prints an HTML list header fragment to an HTML stream.
Synopsis
#include "SaRnHtml.h"
int SaListHead(char* evalue);
Arguments
evalue
- A string specifying the list header's value. This string is converted to an HTML
compatible string. If evalue is NULL, an empty string is used.
Return Values
Returns an integer with a value of 0.
Description
Prints an HTML list header fragment to an HTML stream.
Example
The code fragment:
SaListHead("Products");
will write:
<LH>Products</LH>
to the output stream.
See Also
(63 out of 193)