Click or drag to resize

ItemXPathResultItem Field

XPath to the top_level <Item> tag(s) in item's internal AML.

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public static readonly string XPathResultItem

Field Value

Type: String
Remarks
Note that this field is not available from JavaScript. Use the string constant //Result/Item instead.
Examples
...
Item response = myitem.apply();
if( !response.isError() )
{
  ArasXmlNodeList item_nodes = response.dom.SelectNodes( Item.XPathResultItem );
  ...
}
...
See Also