xml_SetCDATAHandler ( parserID; cdataHandler )
-
--> parserID : longint
-
--> cdataHandler : string[31]
Set the handler method for character data (CDATA) in the xml document. The CDATA is passed to the handler method as text. The CDATA handler method must be set up with the following input parameters.
|
C_LONGINT($1;$parser)
C_TEXT($2;$cdata)
$parser:=$1
$cdata:=$2
|
|
|
|
|
|
Developer Documentation
Creating Parsers, Destroying Parsers, Parsing Text
Configuring Handler Methods
Position and Error Reporting Functions
Miscellaneous Functions
Output Buffer Functions
Error Codes
|