This submodule is not complete and will result in a compile error if included.
xml/ | This submodule is not complete and will result in a compile error if included. |
License | Copyright © 2007-2012, FreeBASIC Extended Library Development Group |
ext.xml | |
Types | |
XMLNodeList | A <ext.List> of <ext.xml.node> |
Functions | |
xpath | XPath uses path expressions to select nodes or node-sets in an XML document. |
Copyright © 2007-2012, FreeBASIC Extended Library Development Group
Distributed under the FreeBASIC Extended Library Group license. See accompanying file LICENSE.txt or copy at http://code.google.com
Types | |
XMLNodeList | A <ext.List> of <ext.xml.node> |
Functions | |
xpath | XPath uses path expressions to select nodes or node-sets in an XML document. |
declare function xpath( byval DOM as xml. tree ptr, byref xpathstr as string ) as XMLNodeList ptr
XPath uses path expressions to select nodes or node-sets in an XML document. The node is selected by following a path or steps. For Help with XPath syntax see: http://www.w3schools.com/xpath/xpath_syntax.asp
DOM | <ext.xml.tree> pointer to pull nodes from. |
xpathstr | string containing the XPath “code” to use. |
XMLNodeList of matching nodes.
A ext.List of ext.xml.node
type XMLNodeList as fbExt_List( ((node)) )
XPath uses path expressions to select nodes or node-sets in an XML document.
declare function xpath( byval DOM as xml. tree ptr, byref xpathstr as string ) as XMLNodeList ptr