(52 out of 193)
SaHeaderBegin
Prints the beginning 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 SaHeaderBegin(
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 beginning fragment of the HTML header (Hn) element to the HTML stream, where n is an integer from 1 to 6.
Example
The code fragment:
SaHeaderBegin(3);
will write:
<H3>
to the output stream
See Also
(52 out of 193)