[Prev] [Next] [Top] [Bottom] [Contents] (131 out of 193)

SaRowBeginExt

Prints the beginning fragment of for a row element of the table element to an HTML stream. The HTML table element is not supported by all client browsers.

Synopsis

#include "SaRnHtml.h"

int SaRowBeginExt(

int nowrap,

int align,

int valign

);

Argument

nowrap
An integer flag specifying whether to disable line wrapping. A non-zero value adds the HTML fragment:
NOWRAP
to the HTML stream. Otherwise, the fragment is suppressed.
align
An integer specifying which alignment fragment to use. Valid define constants and their associated HTML fragments are:
SA_NOALIGN
SA_LEFT	ALIGN="LEFT"
SA_CENTER	ALIGN="CENTER"
SA_RIGHT	ALIGN="RIGHT"
valign
An integer specifying which vertical alignment fragment to use. Valid define constants and their associated HTML fragments are:
SA_NOALIGN
SA_TOP	VALIGN="TOP"
SA_MIDDLE	VALIGN="MIDDLE"
SA_BOTTOM	VALIGN="BOTTOM"

Return Values

Returns an integer with a value of 0.

Description

Prints the beginning fragment for a row element of the table element to an HTML stream. The HTML table element is not supported by all client browsers.

Example

The code fragment:

SaRowBeginExt(1, SA_CENTER, SA_MIDDLE);
will write:

<TR NOWRAP ALIGN="CENTER" VALIGN="MIDDLE">
to the output stream

See Also


[Prev] [Next] [Top] [Bottom] [Contents] (131 out of 193)