/ Add a new text node to this node. */ /
| 592 | /* Add a new text node to this node. */ |
| 593 | /******************************************************************/ |
| 594 | void DOMNODE::AddText(PGLOBAL g, PCSZ txtp) |
| 595 | { |
| 596 | MSXML2::IXMLDOMTextPtr tp= Docp->createTextNode((_bstr_t)txtp); |
| 597 | |
| 598 | if (tp != NULL) |
| 599 | Nodep->appendChild(tp); |
| 600 | |
| 601 | } // end of AddText |
| 602 | |
| 603 | /******************************************************************/ |
| 604 | /* Remove a child node from this node. */ |