XmlNextChild – Function

Description

This function returns the handle of the next child tag having the specified name. If szTag is empty, then the next child tag is returned whatever its name is.

Inputs

Input

Data type

Description

hTag

DINT

Handle of the XML tag.

hChildTag

DINT

Handle of the previous child tag.

szTag

STRING

Name of the wished child tag. Empty string for enumerating all children.

Outputs

Output

Data type

Description

hChildNext

DINT

Handle of the next child tag matching the specified name, or 0 if no child found.

Typical use in ST:

 

hChild := XmlFirstChild (hParentTag, 'TagName');

while hChild <> 0 do

   (* explore the tag *)

   hChild := XmlNextChild (hParentTag, hChild, 'TagName');

end_while;

Fixed_Image See also

Memory management / Miscellaneous

XmlManager: Main gatherer of XML data in memory.

XmlLastError: Get detailed error report about last call.

Reading/writing documents

XmlNewDoc: Create an empty XML document.

XmlFreeDoc: Release a XML document from memory.

XmlParseDocTxb: Parse a XML document from text buffer.

XmlParseDocFile: Parse a XML document form file.

XmlWriteDocTxb: Format XML data to text buffer.

XmlWriteDocFile: Format XML data to file.

Exploring a XML document

XmlGetTagName: Get name of a XML tag.

XmlCheckTagName: Test the name of a XML tag.

XmlGetTagCont: Get tag contents as STRING.

XmlGetTagContT: Get tag contents as text buffer.

XmlGetTagAttrib: Get tag attribute.

XmlFirstChild: Start enumerating child tags.

XmlNextChild: Enumerate child tags

Building a XML document

XmlSetTagAttrib: Set tag attribute.

XmlSetTagCont: Set tag contents with STRING.

XmlSetTagContT: Set tag contents with text buffer.

XmlAddChild: Add a child tag.

Exchanging variables using their name

XmlGetSybValue: Get variable value using its symbol.

XmlSetSybValue: Set variable value using its symbol.


Created with the Personal Edition of HelpNDoc: Maximize Your PDF Protection with These Simple Steps