Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Returns boolean value of the specified xpath.

boolean myXml.EvaluateBoolean()

Returns boolean value of the specified xpath.

boolean myXml.EvaluateBoolean(xpath: string)

Arguments

string xpath
XPath to evaluate. If not specified current node is used.

Remarks

This method checks the evaluated value is (non-case sensitive) equal to "false" or "0" or empty value. All other values are evaluated as true value.

Example

Evaluate with a xpath

Code Block
languagejs
var isDisabled = $Xml.EvaluateBoolean('//Customer/IsDisabled');