Type (XmlDoc/XmlNode function)

From m204wiki
Revision as of 00:13, 7 December 2010 by 198.242.244.47 (talk) (Created page with "<span style="font-size:120%; color:black"><b>Type of selected node</b></span> Type function Type function [[Category:XmlD...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Type of selected node

Type is a member of the XmlDoc and XmlNode classes.

This function gets the type of node of the head of the argument XPath result.

Syntax

  %nodTypEnum = nr:Type([Xpath])

Syntax Terms

%nodTypEnum
A declared enumeration object of type XmlNodeType to contain the returned value of Type. These values are listed in “Usage Notes,” below.
nr
An XmlDoc or XmlNode, used as the context node for the XPath expression. If an XmlDoc, the Root node is the context node.
XPath
A Unicode string that is an XPath expression that results in a nodelist. The head of the nodelist is the node to process. This is an optional argument whose default is a period (.), that is, the node referenced by the method object (nr). Prior to Sirius Mods version 7.6, this argument is an EBCDIC string.

Usage Notes

The Type function returns an XmlNodeType enumeration value, which may be one of the following. For more information about enumerations, see Enumerations.

  • Attribute
  • Comment
  • Element
  • PI (which stands for Processing Instruction)
  • Root
  • Text

Example

The following example displays the string value of the type of the node pointed to by %nod:

    Print %nod:Type:ToString

Request-Cancellation Errors

  • XPath is invalid.
  • Result of (XPath) is empty.
  • Insufficient free space exists in CCATEMP.

See Also

  • For more information about using XPath expressions, see XPath.