project BLF > class BFcTranslation > method CharactersInternal

Description

Specific SAX-handler procedure.
SAX callback procedure for parsing the value between a start and end tag.

Parameters:
->imCharData = mempointer containing the character value for the xml node
->iiChars = number of characters in imCharData


Parameters


imCharDatainputmemptrmempointer containing the character value for the xml node
iiCharsinputintegernumber of characters in imCharData


Internal usage


unused


program code (program9/bfctranslation.p)

/*do not trim vcTemp in this method, it will remove spaces before " &"*/
/* ignore iichars, as codepage-conversion may change the number of bytes  */
/*
assign vcTemp = vcTemp + get-string(imCharData, 1, iiChars).
*/
assign vcTemp = vcTemp + get-string(imCharData, 1, get-size(imCharData)).