Click or drag to resize

ItemgetLogicalChildren Method

Returns Item object with the nodeList containing logical nodes that are children of the this.node.

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public Item getLogicalChildren()

Return Value

Type: Item
Item object with the nodeList containing logical nodes that are direct children of the this.node. The returned item shares its dom with this item.
Exceptions
ExceptionCondition
Exception The instance is neither a single regular item (i.e. item referencing <Item> node) nor a logical item.
Remarks
The method allows to traverse logical nodes of an item using exclusively IOM API.
Examples
...
Item lchildren = item.getLogicalChildren();
for( int i = 0; i < lchildren.getItemCount(); i++ )
{
  Item lchild = lchildren.getItemByIndex(i);
  ...
}
...
See Also