#include "SaRnHtml.h"
int SaTableItemExt(char* evalue, int rows, int cols, int align, int nowrap);
evalue
rows
ROWSPAN="rows"
cols
COLSPAN="cols"
align
SA_NOALIGN
SA_TOP ALIGN="TOP"
SA_MIDDLE ALIGN="MIDDLE"
SA_BOTTOM ALIGN="BOTTOM"
SA_LEFT ALIGN="LEFT"
SA_CENTER ALIGN="CENTER"
SA_RIGHT ALIGN="RIGHT"
nowrap
NOWRAP
SaTableItemExt("Sapphire", 2, 2, SA_CENTER);will write:
<TD NOWRAP ROWSPAN="2" COLSPAN="2" ALIGN="CENTER">Sapphire</TD>to the output stream.