Documentation for RpBufferDisplay tag

,

Is any documentation for RpBufferDisplay tag? It is mentioned in appnote_largewebpage.pdf, but I cannot find more information.

Hello

Unfortunately there really is none. Here are some excerpts from a test project I did some years ago:

data (abridged):

static char *MyBigBufferP1 =
"-----------Beginning of page----------------------
"
"01 12345678901234567890123456789012345678901234567890
"
"02 12345678901234567890123456789012345678901234567890
"
"03 12345678901234567890123456789012345678901234567890
"
"04 12345678901234567890123456789012345678901234567890
"
"05 12345678901234567890123456789012345678901234567890
"
"06 12345678901234567890123456789012345678901234567890
"
"07 12345678901234567890123456789012345678901234567890
"
"08 12345678901234567890123456789012345678901234567890
"
"09 12345678901234567890123456789012345678901234567890
"
"10 12345678901234567890123456789012345678901234567890
"

html with pbuilder comment tags:

pbuilder generated function:

Boolean MyGetBigBuffer1(void *theTaskDataPtr, char *theNamePtr,
Signed16Ptr theIndexValuesPtr, char **theBufferPtr,
Unsigned32Ptr theLengthPtr) {

Boolean  theResult;
 
  *theBufferPtr = MyBigBufferP1;
  *theLengthPtr = strlen(MyBigBufferP1);

return 1;

}

I hope this helps.