#include "SaRnHtml.h"
int SaTableHeadExt(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
SaTableHeadExt("Description", 2, 2, SA_CENTER);will write:
<TH NOWRAP ROWSPAN="2" COLSPAN="2" ALIGN="CENTER",>Description</TH>to the output stream