Xml Tcl Reference Documentation
Xml
Current Version: 11.5.0
Chilkat.Xml
Load XML from strings, files, byte data, or other Chilkat objects, then
save or emit formatted XML when processing is complete.
Move through parent, child, sibling, and selected elements while working
directly with the XML document structure.
Add, update, remove, or rename elements; set text content; and read,
add, modify, or delete attributes.
Locate elements by tag name, content, path, attribute value, or custom
search patterns.
Work with namespace-aware XML, declarations, CDATA, child ordering,
sorting, and subtree insertion or removal.
Store binary data as Base64 and optionally compress or encrypt element
content when XML carries encoded payloads.
For an extended overview, see
Xml Class Overview.
Load, navigate, search, edit, transform, and save in-memory XML trees.
Chilkat.Xml is the primary Chilkat class for in-memory XML tree
manipulation. It supports loading and saving XML, navigating between elements,
reading and writing text content, managing attributes, working with
namespaces, adding and removing subtrees, searching by tag, content, or
attribute, sorting child records, scrubbing XML, handling CDATA and XML
declarations, storing binary data as Base64, and optionally compressing or
encrypting element content.
Load and save XML
Navigate XML trees
Edit elements and attributes
Search and select
Namespaces and structure
Binary and protected content
Xml object reference for the selected
element, while methods ending in 2 update the caller's internal
reference to point to a different element. This distinction is central when
navigating and editing XML trees because it determines whether the current
object stays where it is or moves to another element.
Chilkat.Xml for tree-oriented XML
manipulation, and use Chilkat.XmlDSig,
Chilkat.XmlDSigGen, or related classes when the task is XML
digital signing or signature verification.
Object Creation
# 'this' is not a keyword in Tcl. It can freely be used as a variable name. set this [new CkXml]
Properties
Cdata
set boolVal [CkXml_get_Cdata $this]
CkXml_put_Cdata $this $boolVal
Controls how this element's text content is emitted. When set to 1, the element content is written inside a CDATA section instead of being emitted as ordinary character data with XML escaping.
< or &. It does not change the logical text value of the element; it only changes how that text is represented in the serialized XML.Content
# ckStr is a CkString
CkXml_get_Content $this $ckStr
set strVal [CkXml_get_content $this]
CkXml_put_Content $this $strVal
Gets or sets the text content stored directly on this XML element. Child elements are not included in this value.
For example, both of the following elements have This is the content as their Content:
<tag1>This is the content</tag1> <tag2><child1>abc</child1><child2>abc</child2>This is the content</tag2>
ContentInt
set intVal [CkXml_get_ContentInt $this]
CkXml_put_ContentInt $this $intVal
Gets or sets this element's content as a 32-bit integer. Setting the property converts the integer to its decimal text representation; getting the property interprets the element's text content as an integer.
Content when the value may exceed the range of a 32-bit integer or when the exact lexical representation must be preserved.DebugLogFilePath
# ckStr is a CkString
CkXml_get_DebugLogFilePath $this $ckStr
set strVal [CkXml_get_debugLogFilePath $this]
CkXml_put_DebugLogFilePath $this $strVal
If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.
Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.
Possible causes of hangs include:
- A timeout property set to 0, indicating an infinite timeout.
- A hang occurring within an event callback in the application code.
- An internal bug in the Chilkat code causing the hang.
DocType
# ckStr is a CkString
CkXml_get_DocType $this $ckStr
set strVal [CkXml_get_docType $this]
CkXml_put_DocType $this $strVal
Gets or sets the document type declaration associated with the XML document.
The value represents the document-level DOCTYPE declaration, for example <!DOCTYPE note SYSTEM "note.dtd">.
EmitBom
set boolVal [CkXml_get_EmitBom $this]
CkXml_put_EmitBom $this $boolVal
Controls whether a byte order mark (BOM, also called a preamble) is written when XML is saved to a file. The default is 0.
This setting is relevant to encodings for which a BOM can be emitted, such as UTF-8 and UTF-16. It does not affect XML returned as a language string by methods such as GetXml.
EmitCompact
set boolVal [CkXml_get_EmitCompact $this]
CkXml_put_EmitCompact $this $boolVal
Controls whether XML emitted by GetXml and GetXmlSb is compact. When 1, unnecessary formatting whitespace and line breaks are omitted. The default is 0 for backward compatibility.
EmitXmlDecl
set boolVal [CkXml_get_EmitXmlDecl $this]
CkXml_put_EmitXmlDecl $this $boolVal
Controls whether the XML declaration is included when XML is emitted. The default is 1. When set to 0, output methods such as GetXml and SaveXml omit the declaration.
An XML declaration is the leading construct such as <?xml version="1.0" encoding="utf-8"?>.
Encoding
# ckStr is a CkString
CkXml_get_Encoding $this $ckStr
set strVal [CkXml_get_encoding $this]
CkXml_put_Encoding $this $strVal
Gets or sets the encoding value used in the XML declaration. The default is utf-8. This is a document-level setting and may be accessed from any element in the tree.
When XML is loaded, Chilkat sets this property from the encoding declared by the input XML when one is present. If no encoding is declared, the property is reset to utf-8.
Encoding changes the declared/output encoding used when XML is serialized; it does not reinterpret or transcode the already-stored Unicode text inside the in-memory tree.I
set intVal [CkXml_get_I $this]
CkXml_put_I $this $intVal
Provides a substitution value for [i] in Chilkat tag paths and ChilkatPath expressions. When a path contains [i], the current value of this property is substituted for I.
I, J, and K properties make it convenient to reuse a path expression inside nested loops without constructing a new path string for every index.IsBase64
set boolVal [CkXml_get_IsBase64 $this]
Returns 1 if this element's content consists only of characters allowed in standard Base64 text, with whitespace ignored. Standard Base64 uses A-Z, a-z, 0-9, +, /, and optional trailing = padding.
J
set intVal [CkXml_get_J $this]
CkXml_put_J $this $intVal
Provides a substitution value for [j] in Chilkat tag paths and ChilkatPath expressions. When a path contains [j], the current value of this property is substituted for J.
I, J, and K properties make it convenient to reuse a path expression inside nested loops without constructing a new path string for every index.K
set intVal [CkXml_get_K $this]
CkXml_put_K $this $intVal
Provides a substitution value for [k] in Chilkat tag paths and ChilkatPath expressions. When a path contains [k], the current value of this property is substituted for K.
I, J, and K properties make it convenient to reuse a path expression inside nested loops without constructing a new path string for every index.LastErrorHtml
# ckStr is a CkString
CkXml_get_LastErrorHtml $this $ckStr
set strVal [CkXml_get_lastErrorHtml $this]
Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastErrorText
# ckStr is a CkString
CkXml_get_LastErrorText $this $ckStr
set strVal [CkXml_get_lastErrorText $this]
Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
LastErrorXml
# ckStr is a CkString
CkXml_get_LastErrorXml $this $ckStr
set strVal [CkXml_get_lastErrorXml $this]
Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastMethodSuccess
set boolVal [CkXml_get_LastMethodSuccess $this]
CkXml_put_LastMethodSuccess $this $boolVal
Indicates the success or failure of the most recent method call: 1 means success, 0 means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.
NumAttributes
set intVal [CkXml_get_NumAttributes $this]
Returns the number of attributes on this element.
For example, <tag attr1="value1" attr2="value2">...</tag> has two attributes. Attribute indexes used by methods such as GetAttributeName and GetAttributeValue are zero-based.
NumChildren
set intVal [CkXml_get_NumChildren $this]
Returns the number of direct child elements of this element. Descendants below those children are not included in the count.
SortCaseInsensitive
set boolVal [CkXml_get_SortCaseInsensitive $this]
CkXml_put_SortCaseInsensitive $this $boolVal
Controls case sensitivity for the XML sorting methods. Set to 1 for case-insensitive string comparisons or 0 for case-sensitive comparisons.
Standalone
set boolVal [CkXml_get_Standalone $this]
CkXml_put_Standalone $this $boolVal
Controls the standalone pseudo-attribute in the XML declaration. This is a document-level setting and may be accessed from any element in the tree.
Setting this property to 1 causes the declaration to include standalone="yes".
Tag
# ckStr is a CkString
CkXml_get_Tag $this $ckStr
set strVal [CkXml_get_tag $this]
CkXml_put_Tag $this $strVal
Gets or sets the element name for this element, including any namespace prefix. For example, the tag for <soapenv:Body> is soapenv:Body.
Use TagNsPrefix and TagUnprefixed when the prefix and local portion are needed separately.
TagNsPrefix
# ckStr is a CkString
CkXml_get_TagNsPrefix $this $ckStr
set strVal [CkXml_get_tagNsPrefix $this]
CkXml_put_TagNsPrefix $this $strVal
Gets or sets the namespace prefix portion of this element's tag. For soapenv:Envelope, the namespace prefix is soapenv.
xmlns attributes in the XML.TagPath
# ckStr is a CkString
CkXml_get_TagPath $this $ckStr
set strVal [CkXml_get_tagPath $this]
Returns the Chilkat tag path needed to reach this element from the document root. If this object currently references the root element, the returned path is the empty string.
| between element names. It is not an XPath expression.TagUnprefixed
# ckStr is a CkString
CkXml_get_TagUnprefixed $this $ckStr
set strVal [CkXml_get_tagUnprefixed $this]
CkXml_put_TagUnprefixed $this $strVal
Gets or sets the unprefixed portion of this element's tag. For soapenv:Envelope, the unprefixed tag is Envelope.
Use TagNsPrefix to access the prefix separately.
TreeId
set intVal [CkXml_get_TreeId $this]
Returns the identifier of the XML tree to which this element belongs. Elements in the same XML document have the same TreeId.
Xml objects can reference different elements in the same underlying tree. Comparing TreeId values is a convenient way to determine whether two element references belong to that same tree.UncommonOptions
# ckStr is a CkString
CkXml_get_UncommonOptions $this $ckStr
set strVal [CkXml_get_uncommonOptions $this]
CkXml_put_UncommonOptions $this $strVal
Provides a catch-all string for uncommon XML behaviors. The default is the empty string, which is appropriate for normal use.
Leave this property empty unless Chilkat documentation or support identifies a specific option needed for a specialized interoperability case.
topUtf8
set boolVal [CkXml_get_Utf8 $this]
CkXml_put_Utf8 $this $boolVal
When set to 1, all string arguments and return values are interpreted as UTF-8 strings. When set to 0, they are interpreted as ANSI strings.
In Chilkat v11.0.0 and later, the default value is 1. Before v11.0.0, it was 0.
VerboseLogging
set boolVal [CkXml_get_VerboseLogging $this]
CkXml_put_VerboseLogging $this $boolVal
If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
Version
# ckStr is a CkString
CkXml_get_Version $this $ckStr
set strVal [CkXml_get_version $this]
Methods
AccumulateTagContent
# skipTags is a string
# outStr is a CkString (output)
set status [CkXml_AccumulateTagContent $this $tag $skipTags $outStr]
set retStr [CkXml_accumulateTagContent $this $tag $skipTags]
Traverses the subtree rooted at the calling element and concatenates the text content of all elements whose tag equals tag.
skipTags is a vertical-bar-delimited list of tag names whose entire subtrees are excluded from the accumulation. For example, script|style skips elements rooted at either of those tags.
Returns 1 for success, 0 for failure.
AddAttribute
# value is a string
set status [CkXml_AddAttribute $this $name $value]
Adds an attribute named name with the specified string value to the calling element.
Returns 1 on success and 0 on failure.
AddOrUpdateAttribute or UpdateAttribute when the desired behavior is to update an existing attribute value instead of requiring a new attribute.Returns 1 for success, 0 for failure.
AddAttributeInt
# value is an integer
set status [CkXml_AddAttributeInt $this $name $value]
Adds an attribute named name whose value is the decimal representation of value.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topAddChildTree
set status [CkXml_AddChildTree $this $tree]
Adds the entire XML subtree referenced by tree as a new direct child of the calling element.
If tree already belongs to another XML document, the subtree is transferred to the destination tree rather than copied as an unrelated duplicate.
TreeId can be used to determine which tree an element reference belongs to.Returns 1 for success, 0 for failure.
AddOrUpdateAttribute
# value is a string
CkXml_AddOrUpdateAttribute $this $name $value
Sets the string value of an attribute on the calling element. If an attribute named name already exists, its value is replaced; otherwise the attribute is added.
AddOrUpdateAttributeI
# value is an integer
CkXml_AddOrUpdateAttributeI $this $name $value
Sets an integer-valued attribute on the calling element. If an attribute named name already exists, its value is replaced with the decimal representation of value; otherwise the attribute is added.
AddStyleSheet
CkXml_AddStyleSheet $this $styleSheet
Adds an XML stylesheet processing instruction to the document. Pass the complete processing-instruction text, for example:
<?xml-stylesheet href="mystyle.css" title="Compact" type="text/css"?>
AddToAttribute
# amount is an integer
CkXml_AddToAttribute $this $name $amount
Treats the named attribute value as an integer, adds amount, and stores the resulting integer back in the attribute.
If the attribute does not yet exist, this method behaves like AddOrUpdateAttributeI and creates it with amount as the value.
AddToChildContent
# amount is an integer
CkXml_AddToChildContent $this $tag $amount
Finds the child identified by tag, interprets its content as an integer, adds amount, and stores the resulting integer as the child's new content.
AddToContent
CkXml_AddToContent $this $amount
Interprets this element's content as an integer, adds amount, and stores the resulting integer as the new content.
AppendToContent
set status [CkXml_AppendToContent $this $str]
Appends str to the existing text content of the calling element without replacing its child elements.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topChildContentMatches
# pattern is a string
# caseSensitive is a boolean
set retBool [CkXml_ChildContentMatches $this $tagPath $pattern $caseSensitive]
Returns 1 if the child identified by tagPath has content matching pattern; otherwise returns 0. caseSensitive controls whether letter case is significant.
The pattern may contain * wildcards, where each asterisk matches zero or more characters.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.ChilkatPath
# outStr is a CkString (output)
set status [CkXml_ChilkatPath $this $pathCmd $outStr]
set retStr [CkXml_chilkatPath $this $pathCmd]
Evaluates a Chilkat-specific path command that can navigate from the current element, return element content or an attribute value, or move the caller's internal element reference.
This syntax is not XPath. Commands are separated by vertical bars and the expression ends with a return command:
command|command|command|...|returnCommand
Navigation commands include:
TagName— first direct child having that tag.TagName[n]— the indexed direct child having that tag...— parent.++/--— next / previous sibling.TagName{Content}— first direct child with that tag and exact content./T/TagName— traverse the subtree and find the first element with that tag./C/TagName,ContentPattern— traverse for a tag whose content matches a wildcard pattern./C/ContentPattern— traverse for any tag whose content matches a wildcard pattern./A/TagName,AttrName,AttrValuePattern— traverse for a tag having a matching attribute value.
The final return command is:
*— return the current element's content.(AttrName)— return an attribute value.$— move thisXmlobject to the selected element and return an empty string.
I, J, and K properties can be used with [i], [j], and [k] in path expressions.Returns 1 for success, 0 for failure.
Clear
Clears the calling element by removing all child elements, attributes, and text content, and resets its tag name to unnamed.
The element itself remains in the tree; this method clears its contents rather than removing the element from its parent.
topContentMatches
# caseSensitive is a boolean
set retBool [CkXml_ContentMatches $this $pattern $caseSensitive]
Returns 1 if this element's content matches pattern; otherwise returns 0. caseSensitive controls whether letter case is significant.
The pattern may contain * wildcards, where each asterisk matches zero or more characters.
Copy
CkXml_Copy $this $node
Copies the Tag, Content, and attributes from node to the calling element.
AddChildTree or SwapTree when child structure is part of the operation.CopyRef
CkXml_CopyRef $this $copyFromNode
Changes this Xml object so that it references the same underlying XML element as copyFromNode. The caller's previous element reference is discarded.
CopyRef does not copy XML data. After the call, both Xml objects refer to the same element, so edits through either reference affect the same tree element.DecodeEntities
# outStr is a CkString (output)
set status [CkXml_DecodeEntities $this $str $outStr]
set retStr [CkXml_decodeEntities $this $str]
Decodes HTML character entities found in str and returns the decoded text. This is a utility operation; it does not modify the XML tree unless the returned string is assigned to an element.
For example, an HTML entity such as & is decoded to &.
Returns 1 for success, 0 for failure.
DecryptContent
set status [CkXml_DecryptContent $this $password]
Decrypts element content previously produced by EncryptContent, using the same password, and restores the original plaintext content.
Returns 1 on success and 0 on failure.
EncryptContent. It is not a general XML Encryption (XML-Enc) implementation.Returns 1 for success, 0 for failure.
EncryptContent
set status [CkXml_EncryptContent $this $password]
Encrypts the calling element's text content using Chilkat's password-based 128-bit AES-CBC format and replaces the plaintext content with Base64-encoded encrypted data.
Returns 1 on success and 0 on failure.
DecryptContent with the same password to restore the content.Returns 1 for success, 0 for failure.
ExtractChildByIndex
# index is an integer
set ret_xml [CkXml_ExtractChildByIndex $this $index]
Removes the direct child at zero-based index from the calling element and returns an Xml object for the detached child subtree.
RemoveChildByIndex, extraction gives the caller a reference to the removed subtree so it can be retained, inspected, or attached elsewhere.Returns NULL on failure
ExtractChildByName
# tagPath is a string
# attrName is a string
# attrValue is a string
set ret_xml [CkXml_ExtractChildByName $this $tagPath $attrName $attrValue]
Finds, removes, and returns the first child selected by tagPath and the optional attribute criteria.
If attrName and attrValue are empty, the first child matching the tag/path is extracted. If attrName is provided, the child must have that attribute. If attrValue is also provided, the attribute value must match exactly.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Returns NULL on failure
FindChild
# tagPath is a string
set ret_xml [CkXml_FindChild $this $tagPath]
Returns an Xml object referencing the child selected by tagPath. The calling object remains positioned on its current element.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
FindChild2
set status [CkXml_FindChild2 $this $tagPath]
Moves the calling Xml object's internal reference to the child selected by tagPath. Returns 1 when the child is found and the move succeeds; otherwise returns 0.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
FindNextRecord
# tagPath is a string
# contentPattern is a string
set ret_xml [CkXml_FindNextRecord $this $tagPath $contentPattern]
Finds the next direct child record for which the descendant identified by tagPath has content matching contentPattern. This is intended for iterating record-like child elements.
The content pattern may contain * wildcards.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Returns NULL on failure
FindOrAddNewChild
# tagPath is a string
set ret_xml [CkXml_FindOrAddNewChild $this $tagPath]
Returns the child selected by tagPath if it already exists. If it does not exist, creates the required child path with empty content and returns the resulting child element.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath. Use NewChild instead when duplicate children with the same tag are intentional.Returns NULL on failure
FirstChild
set ret_xml [CkXml_FirstChild $this]
Returns an Xml object referencing the first direct child of the calling element.
A common forward-iteration pattern is FirstChild followed by repeated calls to NextSibling.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
FirstChild2
Moves the calling Xml object's internal reference to its first direct child. Returns 1 if a first child exists; otherwise returns 0.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
GetAttributeName
# outStr is a CkString (output)
set status [CkXml_GetAttributeName $this $index $outStr]
set retStr [CkXml_getAttributeName $this $index]
Returns the name of the attribute at zero-based index. Use NumAttributes to determine the valid index range.
Returns 1 for success, 0 for failure.
GetAttributeValue
# outStr is a CkString (output)
set status [CkXml_GetAttributeValue $this $index $outStr]
set retStr [CkXml_getAttributeValue $this $index]
Returns the value of the attribute at zero-based index. Use NumAttributes to determine the valid index range.
Returns 1 for success, 0 for failure.
GetAttributeValueInt
set retInt [CkXml_GetAttributeValueInt $this $index]
Returns the value of the attribute at zero-based index, interpreted as a 32-bit integer.
GetAttrValue
# outStr is a CkString (output)
set status [CkXml_GetAttrValue $this $name $outStr]
set retStr [CkXml_getAttrValue $this $name]
Returns the value of the attribute named name on the calling element.
Use HasAttribute when the application must distinguish a missing attribute from an attribute whose value is empty.
Returns 1 for success, 0 for failure.
GetAttrValueInt
set retInt [CkXml_GetAttrValueInt $this $name]
Returns the value of the attribute named name interpreted as a 32-bit integer. Returns 0 if the attribute does not exist.
0, call HasAttribute first when that distinction matters.GetChild
# index is an integer
set ret_xml [CkXml_GetChild $this $index]
Returns an Xml object referencing the direct child at zero-based index. The calling object remains positioned on its current element.
Use NumChildren to determine the valid child range.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
GetChild2
set status [CkXml_GetChild2 $this $index]
Moves the calling Xml object's internal reference to the direct child at zero-based index. Returns 1 on success and 0 if the child cannot be selected.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
GetChildAttrValue
# attrName is a string
# outStr is a CkString (output)
set status [CkXml_GetChildAttrValue $this $tagPath $attrName $outStr]
set retStr [CkXml_getChildAttrValue $this $tagPath $attrName]
Returns the value of attribute attrName on the descendant element selected by tagPath.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Returns 1 for success, 0 for failure.
topGetChildBoolValue
set retBool [CkXml_GetChildBoolValue $this $tagPath]
Returns the integer content of the child selected by tagPath as a Boolean value: content equal to 0 yields 0; a non-zero integer yields 1.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.GetChildContent
# outStr is a CkString (output)
set status [CkXml_GetChildContent $this $tagPath $outStr]
set retStr [CkXml_getChildContent $this $tagPath]
Returns the text content of the child selected by tagPath.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Content; nested child elements are not serialized into this string.Returns 1 for success, 0 for failure.
GetChildContentByIndex
# outStr is a CkString (output)
set status [CkXml_GetChildContentByIndex $this $index $outStr]
set retStr [CkXml_getChildContentByIndex $this $index]
Returns the text content of the direct child at zero-based index. Use NumChildren to determine the valid range.
Returns 1 for success, 0 for failure.
GetChildContentSb
# sb is a CkStringBuilder
set status [CkXml_GetChildContentSb $this $tagPath $sb]
Finds the element selected by tagPath and appends that element's text content to sb.
The existing contents of the StringBuilder are preserved.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
GetChildExact
# tag is a string
# content is a string
set ret_xml [CkXml_GetChildExact $this $tag $content]
Returns the first direct child whose tag equals tag and whose text content exactly equals content.
The calling object remains positioned on its current element.
Returns NULL on failure
GetChildIntValue
set retInt [CkXml_GetChildIntValue $this $tagPath]
Returns the content of the child selected by tagPath, interpreted as a 32-bit integer.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.GetChildContent and parse the returned text separately when values may exceed the range of a 32-bit integer.GetChildTag
# outStr is a CkString (output)
set status [CkXml_GetChildTag $this $index $outStr]
set retStr [CkXml_getChildTag $this $index]
Returns the tag name of the direct child at zero-based index. Use NumChildren to determine the valid index range.
Returns 1 for success, 0 for failure.
topGetChildTagByIndex
# outStr is a CkString (output)
set status [CkXml_GetChildTagByIndex $this $index $outStr]
set retStr [CkXml_getChildTagByIndex $this $index]
Returns the tag name of the direct child at zero-based index. Use NumChildren to determine the valid index range.
Returns 1 for success, 0 for failure.
GetChildWithAttr
# tagPath is a string
# attrName is a string
# attrValue is a string
set ret_xml [CkXml_GetChildWithAttr $this $tagPath $attrName $attrValue]
Returns the child selected by tagPath that also has an attribute named attrName whose value exactly equals attrValue.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Returns NULL on failure
GetChildWithContent
# content is a string
set ret_xml [CkXml_GetChildWithContent $this $content]
Returns the first direct child whose text content exactly equals content. The child tag may be any value.
Returns NULL on failure
GetChildWithTag
# tagPath is a string
set ret_xml [CkXml_GetChildWithTag $this $tagPath]
Returns an Xml object referencing the child selected by tagPath. The calling object remains positioned on its current element.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
GetChildWithTag2
set status [CkXml_GetChildWithTag2 $this $tagPath]
Moves the calling Xml object's internal reference to the child selected by tagPath. Returns 1 when the child is found and the move succeeds; otherwise returns 0.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
topGetNthChildWithTag
# tag is a string
# n is an integer
set ret_xml [CkXml_GetNthChildWithTag $this $tag $n]
Returns the zero-based nth direct child whose tag exactly equals tag. Children with other tag names are ignored when counting matches.
Use NumChildrenHavingTag to determine how many matching children are available.
Returns NULL on failure
GetNthChildWithTag2
# n is an integer
set status [CkXml_GetNthChildWithTag2 $this $tag $n]
Moves the calling Xml object's internal reference to the zero-based nth direct child whose tag equals tag. Returns 1 on success and 0 when no such child exists.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
GetParent
set ret_xml [CkXml_GetParent $this]
Returns an Xml object referencing this element's parent. Returns no parent when the current element is the document root.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
GetParent2
Moves the calling Xml object's internal reference to its parent. Returns 1 if a parent exists; otherwise returns 0 when already at the root.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
GetRoot
set ret_xml [CkXml_GetRoot $this]
Returns an Xml object referencing the root element of the XML tree that contains the current element. The calling object remains positioned on its current element.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
GetRoot2
Moves the calling Xml object's internal reference to the root element of its XML tree.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.GetSelf
set ret_xml [CkXml_GetSelf $this]
Returns a new Xml object that references the same underlying XML element as the calling object.
Returns NULL on failure
GetXml
set status [CkXml_GetXml $this $outStr]
set retStr [CkXml_getXml $this]
Serializes the XML tree or subtree rooted at the current element and returns the XML text.
When called while positioned on the document root, the XML declaration is included if EmitXmlDecl is 1. When called on a non-root element, only that subtree is emitted and the document declaration is not included.
EmitCompact, Encoding, Standalone, and related document/output properties affect serialization as applicable.
Encoding declaration describes serialized XML encoding, while actual byte encoding matters when XML is written to a file or byte-oriented destination.Returns 1 for success, 0 for failure.
topGetXmlBd
set status [CkXml_GetXmlBd $this $bd]
Serializes the XML tree or subtree rooted at the current element and appends the encoded XML bytes to bd.
The existing contents of the BinData object are preserved. The XML output encoding is governed by the XML document's output settings, including Encoding.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topGetXmlSb
set status [CkXml_GetXmlSb $this $sb]
Serializes the XML tree or subtree rooted at the current element and appends the resulting XML text to sb.
The existing contents of sb are preserved. Output properties such as EmitCompact and EmitXmlDecl apply as appropriate.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topHasAttribute
set retBool [CkXml_HasAttribute $this $name]
Returns 1 if the calling element has an attribute named name; otherwise returns 0.
HasAttrWithValue
# value is a string
set retBool [CkXml_HasAttrWithValue $this $name $value]
Returns 1 if the calling element has an attribute named name whose value exactly equals value; otherwise returns 0.
HasChildWithContent
set retBool [CkXml_HasChildWithContent $this $content]
Returns 1 if any direct child has text content exactly equal to content; otherwise returns 0.
HasChildWithTag
set retBool [CkXml_HasChildWithTag $this $tagPath]
Returns 1 if the child selected by tagPath exists; otherwise returns 0.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.HasChildWithTagAndContent
# content is a string
set retBool [CkXml_HasChildWithTagAndContent $this $tagPath $content]
Returns 1 if the child selected by tagPath exists and its text content exactly equals content; otherwise returns 0.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.InsertChildTreeAfter
# tree is a CkXml
CkXml_InsertChildTreeAfter $this $index $tree
Inserts the entire subtree referenced by tree as a direct child immediately after the existing child at zero-based index.
If tree belongs to another XML document, the subtree is transferred to the destination tree.
InsertChildTreeBefore
# tree is a CkXml
CkXml_InsertChildTreeBefore $this $index $tree
Inserts the entire subtree referenced by tree as a direct child immediately before the existing child at zero-based index.
If tree belongs to another XML document, the subtree is transferred to the destination tree.
LastChild
set ret_xml [CkXml_LastChild $this]
Returns an Xml object referencing the last direct child of the calling element.
A common reverse-iteration pattern is LastChild followed by repeated calls to PreviousSibling.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
LastChild2
Moves the calling Xml object's internal reference to its last direct child. Returns 1 if a last child exists; otherwise returns 0.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
LoadBd
# autoTrim is a boolean
set status [CkXml_LoadBd $this $bd $autoTrim]
Parses XML from the bytes contained in bd and replaces the calling object's current XML tree with the loaded document.
If autoTrim is 1, leading and trailing whitespace is removed from each leaf element's text content during loading.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topLoadSb
# autoTrim is a boolean
set status [CkXml_LoadSb $this $sb $autoTrim]
Parses XML from the current contents of sb and replaces the calling object's current XML tree with the loaded document.
If autoTrim is 1, leading and trailing whitespace is removed from each leaf element's text content while loading.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
LoadXml
set status [CkXml_LoadXml $this $xmlData]
Parses the XML text in xmlData and replaces the calling object's current XML tree content with the loaded document root. Returns 1 if parsing succeeds.
Returns 1 for success, 0 for failure.
topLoadXml2
# autoTrim is a boolean
set status [CkXml_LoadXml2 $this $xmlData $autoTrim]
Parses the XML text in xmlData and replaces the current XML tree, like LoadXml. The autoTrim argument additionally controls whether leading and trailing whitespace is removed from each leaf element's text content while loading.
autoTrim to 0 when leading or trailing text whitespace is significant to the application.Returns 1 for success, 0 for failure.
LoadXmlFile
set status [CkXml_LoadXmlFile $this $fileName]
Reads and parses an XML document from fileName, replacing the calling object's current XML tree with the loaded document root. Returns 1 on success.
The file's XML declaration and byte encoding are used as part of normal XML parsing.
Returns 1 for success, 0 for failure.
LoadXmlFile2
# autoTrim is a boolean
set status [CkXml_LoadXmlFile2 $this $fileName $autoTrim]
Reads and parses an XML document from fileName, replacing the current XML tree. The autoTrim argument controls whether leading and trailing whitespace is removed from each leaf element's text content.
autoTrim to 0 when leading or trailing text whitespace must be preserved exactly.Returns 1 for success, 0 for failure.
NewChild
# tagPath is a string
# content is a string
set ret_xml [CkXml_NewChild $this $tagPath $content]
Creates and returns a new child at tagPath with the specified text content. A new child is created even when a child with the same tag already exists.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath. Intermediate elements in a multi-part path are created as needed. Use FindOrAddNewChild when duplicate final children should be avoided.Returns NULL on failure
NewChild2
# content is a string
CkXml_NewChild2 $this $tagPath $content
Creates a new child at tagPath with the specified text content, but does not return a separate Xml object for the new element.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath. Intermediate elements in a multi-part path are created as needed.NewChildAfter
# index is an integer
# tag is a string
# content is a string
set ret_xml [CkXml_NewChildAfter $this $index $tag $content]
Creates a new direct child with the specified tag and content, inserts it immediately after the child at zero-based index, and returns the new child element.
Returns NULL on failure
NewChildBefore
# index is an integer
# tag is a string
# content is a string
set ret_xml [CkXml_NewChildBefore $this $index $tag $content]
Creates a new direct child with the specified tag and content, inserts it immediately before the child at zero-based index, and returns the new child element.
Returns NULL on failure
NewChildInt2
# value is an integer
CkXml_NewChildInt2 $this $tagPath $value
Creates a new child at tagPath whose content is the decimal representation of value. No separate child object is returned.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath. Intermediate elements in a multi-part path are created as needed.NextInTraversal2
set retBool [CkXml_NextInTraversal2 $this $sbState]
Moves the calling Xml object to the next element in a depth-first traversal of the tree and updates sbState with the traversal state.
Pass an empty StringBuilder when beginning a traversal, then reuse the same sbState for each subsequent call.
NextInTraversal method that returns another Xml object.NextSibling
set ret_xml [CkXml_NextSibling $this]
Returns an Xml object referencing the current element's next sibling, or no object when there is no next sibling.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
NextSibling2
Moves the calling Xml object's internal reference to its next sibling. Returns 1 if one exists; otherwise returns 0.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
NumChildrenAt
set retInt [CkXml_NumChildrenAt $this $tagPath]
Returns the number of direct children of the element selected by tagPath. Returns -1 if the path does not identify an existing element.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.NumChildrenHavingTag
set retInt [CkXml_NumChildrenHavingTag $this $tag]
Returns the number of direct children whose tag exactly equals tag. Descendants below those children are not included.
PreviousSibling
set ret_xml [CkXml_PreviousSibling $this]
Returns an Xml object referencing the current element's previous sibling, or no object when there is no previous sibling.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns NULL on failure
PreviousSibling2
Moves the calling Xml object's internal reference to its previous sibling. Returns 1 if one exists; otherwise returns 0.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
PruneAttribute
set retInt [CkXml_PruneAttribute $this $attrName]
Recursively traverses the subtree rooted at the calling element and removes every occurrence of the attribute named attrName.
Returns the number of attributes removed.
topPruneTag
set retInt [CkXml_PruneTag $this $tag]
Recursively traverses the subtree rooted at the calling element and removes every element whose tag equals tag. Each removed element's entire descendant subtree is removed with it.
Returns the number of matching tag occurrences removed.
RemoveAllAttributes
Removes every attribute from the calling element. Returns 1 on success.
Returns 1 for success, 0 for failure.
topRemoveAllChildren
Removes all direct child elements and their subtrees from the calling element. The calling element's own tag, attributes, and text content are retained.
topRemoveAttribute
set status [CkXml_RemoveAttribute $this $name]
Removes the attribute named name from the calling element. Returns 1 when the operation succeeds.
Returns 1 for success, 0 for failure.
topRemoveChild
CkXml_RemoveChild $this $tagPath
Removes all child elements selected by tagPath beneath the calling element.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.ExtractChild... method when the removed element must be retained.RemoveChildByIndex
CkXml_RemoveChildByIndex $this $index
Removes the direct child at zero-based index, including that child's entire subtree.
RemoveChildWithContent
CkXml_RemoveChildWithContent $this $content
Removes all direct children whose text content exactly equals content, including each removed child's subtree.
RemoveFromTree
Detaches the calling element and its entire subtree from its parent. The detached element becomes the root of its own independent XML tree.
Xml object referencing the detached subtree.RemoveStyleSheet
# attrValue is a string
set retInt [CkXml_RemoveStyleSheet $this $attrName $attrValue]
Removes XML stylesheet processing instructions whose attribute named attrName has the value attrValue.
Returns the number of matching stylesheet declarations removed, or -1 if an error occurs.
SaveBinaryContent
# unzipFlag is a boolean
# decryptFlag is a boolean
# password is a string
set status [CkXml_SaveBinaryContent $this $filename $unzipFlag $decryptFlag $password]
Decodes the binary content stored in this element and writes the resulting bytes to filename. Set unzipFlag and decryptFlag to reverse the transformations originally applied, and supply the corresponding password when decrypting.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topSaveXml
set status [CkXml_SaveXml $this $fileName]
Serializes the XML tree or subtree rooted at the current element and writes it to fileName.
Document/output properties such as Encoding, EmitBom, EmitXmlDecl, and EmitCompact affect the generated output as applicable.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topScrub
CkXml_Scrub $this $directives
Recursively normalizes the XML subtree rooted at the calling element according to the comma-separated keywords in directives.
Supported directives are:
AttrTrimEnds— remove leading and trailing whitespace from attribute values.AttrTrimInside— replace tabs, CR, and LF with spaces and collapse repeated spaces inside attribute values.ContentTrimEnds— remove leading and trailing whitespace from element content.ContentTrimInside— normalize internal tabs/line breaks/spaces in element content.LowercaseAttrs— convert attribute names to lowercase.LowercaseTags— convert tag names to lowercase.RemoveCtrl— remove US-ASCII control characters with values 0-31 except TAB, CR, and LF.
SearchAllForContent
# afterPtr is a CkXml
# contentPattern is a string
set ret_xml [CkXml_SearchAllForContent $this $afterPtr $contentPattern]
Returns the first element whose text content matches contentPattern, regardless of tag name.
The search is breadth-first within the subtree rooted at the caller. The afterPtr argument identifies the element after which matching should begin, allowing repeated calls to continue an iteration. To begin at the first candidate, use NULL where the language binding permits it; ActiveX callers should pass a reference to the caller's element instead.
Wildcard patterns are case-sensitive and may contain *, where each asterisk matches zero or more characters.
afterPtr on the next call to continue to the next match. Continue until no further element is returned.Returns NULL on failure
SearchAllForContent2
# contentPattern is a string
set status [CkXml_SearchAllForContent2 $this $afterPtr $contentPattern]
Performs the same breadth-first content search as SearchAllForContent, but moves the calling Xml object's internal reference to the matching element instead of returning a separate element object.
The search is breadth-first within the subtree rooted at the caller. The afterPtr argument identifies the element after which matching should begin, allowing repeated calls to continue an iteration. To begin at the first candidate, use NULL where the language binding permits it; ActiveX callers should pass a reference to the caller's element instead.
Wildcard patterns are case-sensitive and may contain *, where each asterisk matches zero or more characters.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
topSearchForAttribute
# afterPtr is a CkXml
# tag is a string
# attr is a string
# valuePattern is a string
set ret_xml [CkXml_SearchForAttribute $this $afterPtr $tag $attr $valuePattern]
Returns the first element whose tag equals tag, that has an attribute named attr, and whose attribute value matches valuePattern.
The search is breadth-first within the subtree rooted at the caller. The afterPtr argument identifies the element after which matching should begin, allowing repeated calls to continue an iteration. To begin at the first candidate, use NULL where the language binding permits it; ActiveX callers should pass a reference to the caller's element instead.
Wildcard patterns are case-sensitive and may contain *, where each asterisk matches zero or more characters.
afterPtr to continue searching after that element.Returns NULL on failure
SearchForAttribute2
# tag is a string
# attr is a string
# valuePattern is a string
set status [CkXml_SearchForAttribute2 $this $afterPtr $tag $attr $valuePattern]
Performs the same breadth-first tag/attribute search as SearchForAttribute, but moves the calling Xml object's internal reference to the matching element instead of returning a separate object.
The search is breadth-first within the subtree rooted at the caller. The afterPtr argument identifies the element after which matching should begin, allowing repeated calls to continue an iteration. To begin at the first candidate, use NULL where the language binding permits it; ActiveX callers should pass a reference to the caller's element instead.
Wildcard patterns are case-sensitive and may contain *, where each asterisk matches zero or more characters.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
topSearchForContent
# afterPtr is a CkXml
# tag is a string
# contentPattern is a string
set ret_xml [CkXml_SearchForContent $this $afterPtr $tag $contentPattern]
Returns the first element whose tag equals tag and whose text content matches contentPattern.
The search is breadth-first within the subtree rooted at the caller. The afterPtr argument identifies the element after which matching should begin, allowing repeated calls to continue an iteration. To begin at the first candidate, use NULL where the language binding permits it; ActiveX callers should pass a reference to the caller's element instead.
Wildcard patterns are case-sensitive and may contain *, where each asterisk matches zero or more characters.
afterPtr to continue searching after that element.Returns NULL on failure
SearchForContent2
# tag is a string
# contentPattern is a string
set status [CkXml_SearchForContent2 $this $afterPtr $tag $contentPattern]
Performs the same breadth-first tag/content search as SearchForContent, but moves the calling Xml object's internal reference to the matching element.
The search is breadth-first within the subtree rooted at the caller. The afterPtr argument identifies the element after which matching should begin, allowing repeated calls to continue an iteration. To begin at the first candidate, use NULL where the language binding permits it; ActiveX callers should pass a reference to the caller's element instead.
Wildcard patterns are case-sensitive and may contain *, where each asterisk matches zero or more characters.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
SearchForTag
# afterPtr is a CkXml
# tag is a string
set ret_xml [CkXml_SearchForTag $this $afterPtr $tag]
Returns the first element whose tag exactly equals tag.
The search is breadth-first within the subtree rooted at the caller. afterPtr identifies the element after which searching begins. To begin at the first candidate, use NULL where the language binding permits it; ActiveX callers should pass a reference to the caller's element.
afterPtr to find the next matching tag. Continue until no further element is returned.Returns NULL on failure
SearchForTag2
# tag is a string
set status [CkXml_SearchForTag2 $this $afterPtr $tag]
Performs the same breadth-first tag search as SearchForTag, but moves the calling Xml object's internal reference to the matching element instead of returning a separate object.
Use afterPtr in the same way as with SearchForTag to begin or continue the search.
Xml object return another object referencing an element in the same underlying tree. Methods whose names end in 2 instead move the caller's internal reference.Returns 1 for success, 0 for failure.
SetBinaryContentBd
# zipFlag is a boolean
# encryptFlag is a boolean
# password is a string
set status [CkXml_SetBinaryContentBd $this $data $zipFlag $encryptFlag $password]
Stores the bytes in data as binary content on this element, with optional ZIP compression and optional password-based AES encryption. The stored binary representation is emitted as Base64 text when XML is serialized.
If zipFlag is 1, the bytes are compressed first. If encryptFlag is 1, the data is encrypted using Chilkat's 128-bit Rijndael/AES format and password.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topSetBinaryContentFromFile
# zipFlag is a boolean
# encryptFlag is a boolean
# password is a string
set status [CkXml_SetBinaryContentFromFile $this $filename $zipFlag $encryptFlag $password]
Reads the bytes from filename and stores them as this element's binary content, with optional ZIP compression and optional password-based encryption. The resulting stored data is represented as Base64 when XML text is generated.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topSortByAttribute
# ascending is a boolean
CkXml_SortByAttribute $this $attrName $ascending
Sorts the calling element's direct children by the string value of attribute attrName. Set ascending to 1 for ascending order or 0 for descending order.
SortCaseInsensitive controls case sensitivity for string sorting.
SortByAttributeInt
# ascending is a boolean
CkXml_SortByAttributeInt $this $attrName $ascending
Sorts the calling element's direct children numerically by the value of attribute attrName, interpreting each sort value as an integer rather than comparing the text lexicographically.
Set ascending to 1 for ascending order or 0 for descending order.
SortByContent
CkXml_SortByContent $this $ascending
Sorts the calling element's direct children by their text content. Set ascending to 1 for ascending order or 0 for descending order.
SortCaseInsensitive controls case sensitivity for the string comparison.
SortByTag
CkXml_SortByTag $this $ascending
Sorts the calling element's direct children by tag name. Set ascending to 1 for ascending order or 0 for descending order.
SortCaseInsensitive controls case sensitivity for the tag-name comparison.
SortRecordsByAttribute
# attrName is a string
# ascending is a boolean
CkXml_SortRecordsByAttribute $this $sortTag $attrName $ascending
Treats each direct child as a record and sorts those records by the value of attribute attrName on the record's child identified by sortTag.
Set ascending to 1 for ascending order or 0 for descending order. String comparisons honor SortCaseInsensitive.
SortRecordsByContent
# ascending is a boolean
CkXml_SortRecordsByContent $this $sortTag $ascending
Treats each direct child as a record and sorts those records by the text content of the record's child named sortTag.
Set ascending to 1 for ascending order or 0 for descending order. String comparisons honor SortCaseInsensitive.
SortRecordsByContentInt
# ascending is a boolean
CkXml_SortRecordsByContentInt $this $sortTag $ascending
Treats each direct child as a record and sorts those records numerically by the integer content of the record's child named sortTag.
Numeric comparison is used instead of lexicographic string comparison. Set ascending to 1 for ascending order or 0 for descending order.
SwapNode
set status [CkXml_SwapNode $this $node]
Swaps the calling element's tag, text content, and attributes with those of node.
Returns 1 on success and 0 on failure.
SwapTree when child subtrees should also be exchanged.Returns 1 for success, 0 for failure.
topSwapTree
set status [CkXml_SwapTree $this $tree]
Swaps the calling element's complete tree state with tree, including tag, text content, attributes, and children.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topTagContent
# outStr is a CkString (output)
set status [CkXml_TagContent $this $tagName $outStr]
set retStr [CkXml_tagContent $this $tagName]
Searches the subtree rooted at the calling element for the first element whose tag equals tagName and returns that element's text content.
Returns 1 for success, 0 for failure.
topTagEquals
set retBool [CkXml_TagEquals $this $tag]
Returns 1 if the calling element's complete tag name, including any namespace prefix, exactly equals tag; otherwise returns 0.
TagIndex
set retInt [CkXml_TagIndex $this $tagPath]
Returns the zero-based child index of the element selected by tagPath. Returns -1 when no matching element is found at that path.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.GetChild, RemoveChildByIndex, and the insertion methods.TagNsEquals
set retBool [CkXml_TagNsEquals $this $ns]
Returns 1 if this element's namespace-prefix portion exactly equals ns; otherwise returns 0.
For example, the namespace prefix of soapenv:Body is soapenv.
TagUnpEquals
set retBool [CkXml_TagUnpEquals $this $unprefixedTag]
Returns 1 if this element's unprefixed tag exactly equals unprefixedTag; otherwise returns 0.
For example, the unprefixed tag of soapenv:Body is Body.
UnzipContent
Reverses ZipContent: decodes and decompresses the calling element's compressed content and replaces the stored Base64-compressed representation with the original content.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
UnzipTree
Reverses ZipTree: decompresses the stored representation and reconstructs the calling element's previously compressed subtree.
The element's tag and attributes, which are not replaced by ZipTree, remain associated with the restored tree.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
UpdateAt
# autoCreate is a boolean
# value is a string
set retBool [CkXml_UpdateAt $this $tagPath $autoCreate $value]
Sets the text content of the element selected by tagPath to value.
If autoCreate is 1, missing elements along the path are created as needed. If it is 0, the update requires the target path to already exist.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.UpdateAttrAt
# autoCreate is a boolean
# attrName is a string
# attrValue is a string
set retBool [CkXml_UpdateAttrAt $this $tagPath $autoCreate $attrName $attrValue]
Sets attribute attrName to attrValue on the element selected by tagPath. The attribute is added when it does not already exist.
If autoCreate is 1, missing elements along the path are created as needed. If it is 0, the target path must already exist.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.UpdateAttribute
# attrValue is a string
set status [CkXml_UpdateAttribute $this $attrName $attrValue]
Sets attribute attrName to attrValue. If the attribute already exists its value is replaced; otherwise the attribute is added.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
UpdateAttributeInt
# value is an integer
set status [CkXml_UpdateAttributeInt $this $attrName $value]
Sets attribute attrName to the decimal representation of integer value. Use UpdateAttribute for string values.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
topUpdateChildContent
# value is a string
CkXml_UpdateChildContent $this $tagPath $value
Sets the text content of the child selected by tagPath to value. Missing elements along the path are automatically created as needed.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.UpdateChildContentInt
# value is an integer
CkXml_UpdateChildContentInt $this $tagPath $value
Sets the content of the child selected by tagPath to the decimal representation of integer value.
|-separated child-navigation syntax, for example tagA|tagB|tagC. It is not XPath.ZipContent
ZIP-compresses this element's text content and replaces the original content with Base64-encoded compressed data.
Returns 1 on success and 0 on failure.
UnzipContent to restore the original content.Returns 1 for success, 0 for failure.
ZipTree
ZIP-compresses the calling element's content together with its entire child subtree and replaces that structure with Base64-encoded compressed data.
The calling element's tag and attributes are not changed. Call UnzipTree to reconstruct the compressed subtree.
Returns 1 on success and 0 on failure.
Returns 1 for success, 0 for failure.
Deprecated
BEncodeContent Deprecated
# inData is a CkByteData
set status [CkXml_BEncodeContent $this $charset $inData]
Sets this element's content to an RFC 2047-style encoded-word using Base64 (the B encoding). inData contains bytes in the character encoding named by charset.
For example, using Big5 can produce content similar to =?Big5?B?pHCtsw==?=. The encoded payload is Base64 text inside the encoded-word syntax.
Use DecodeContent to recover the encoded bytes.
Returns 1 for success, 0 for failure.
topDecodeContent Deprecated
set status [CkXml_DecodeContent $this $outData]
Decodes this element's RFC 2047-style Q- or B-encoded content and returns the decoded bytes.
This is the inverse of QEncodeContent and BEncodeContent.
Returns 1 for success, 0 for failure.
topGetBinaryContent Deprecated
# decryptFlag is a boolean
# password is a string
# outData is a CkByteData (output)
set status [CkXml_GetBinaryContent $this $unzipFlag $decryptFlag $password $outData]
Decodes this element's Base64-stored binary content and returns the resulting bytes. Set unzipFlag and decryptFlag to match the transformations that were applied when the content was stored; supply the same password when decryption is requested.
SetBinaryContent, retrieval must request the corresponding decompression/decryption steps so the original bytes are recovered.Returns 1 for success, 0 for failure.
topQEncodeContent Deprecated
# inData is a CkByteData
set status [CkXml_QEncodeContent $this $charset $inData]
Sets this element's content to an RFC 2047-style encoded-word using the Q encoding. inData contains bytes in the character encoding named by charset.
Bytes that cannot be represented directly as 7-bit text are emitted as =XX, where XX is the hexadecimal byte value. For example, using gb2312 may produce content similar to =?gb2312?Q?=C5=B5=BB=F9?=.
Use DecodeContent to recover the encoded bytes.
Returns 1 for success, 0 for failure.
topSetBinaryContent Deprecated
# zipFlag is a boolean
# encryptFlag is a boolean
# password is a string
set status [CkXml_SetBinaryContent $this $inData $zipFlag $encryptFlag $password]
Stores inData as binary content on this element, with optional ZIP compression and optional password-based AES encryption. The stored binary representation is emitted as Base64 text when the XML is serialized.
If zipFlag is 1, the data is compressed before storage. If encryptFlag is 1, the data is encrypted using Chilkat's 128-bit Rijndael/AES format and password.
Returns 1 on success and 0 on failure.
GetBinaryContent or SaveBinaryContent with matching unzip/decrypt options to recover the original bytes.Returns 1 for success, 0 for failure.
top