Prehľad
Nástroje obsahu
INT %XML_AddProcInstruction( INT in node, TEXT in instrName, TEXT in instrValue )
node | Handle to parent XML node. |
instrName | Name of process instruction. |
instrValue | Value of process instruction. |
INT _doc _doc := %XML_CreateDocument() INT _pi _pi := %XML_AddProcInstruction(_doc, "xml-stylesheet", "type=""text/xsl"" href=""books_style.xsl""") ;content of XML document: ;<?xml version="1.0" encoding="utf-8"?> ;<?xml-stylesheet type="text=xsl" href="books_style.xsl"?>
Pridať komentár