delphi - NativeXML - Create processing instructions (xml-stylesheet) -
i know how 'classic' xml object
begin pinode := xmldocument1.domdocument.createprocessinginstruction('xml-stylesheet', 'type="text/xsl" href="cda2.xsl"'); xmldocument1.domdocument.insertbefore(pinode, xmldocument1.domdocument.childnodes[1]); end;
but have project uses nativexml ; , don't want mix code ; want use nativexml complete task.
so ... question : there function/method/workaround nativexml.
thank you!
Comments
Post a Comment