(53 out of 193)
SaHeaderEnd
Prints the ending fragment of the HTML header (Hn) element to the HTML stream, where n is an integer from 1 to 6.
Synopsis
#include "SaRnHtml.h"
int SaHeaderEnd(
int size
);
Argument
size
- An integer flag specifying which header fragment to use. Valid values are 1 to 6. Invalid values are converted to 1.
Return Values
Returns an integer with a value of 0.
Description
Prints the ending fragment of the HTML header (Hn) element to the HTML stream, where n is an integer from 1 to 6.
Example
The code fragment:
SaHeaderEnd(3);
will write:
</H3>
to the output stream
See Also
(53 out of 193)