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: 11.0.0.6296

Syntax

C#
public Item getLogicalChildren()
Visual Basic (Declaration)
Public Function getLogicalChildren As Item
J#
public Item getLogicalChildren()
JScript
public function getLogicalChildren() : Item

Return Value

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.

Remarks

The method allows to traverse logical nodes of an item using exclusively IOM API.

Examples

CopyC#
...
Item lchildren = item.getLogicalChildren();
for( int i = 0; i < lchildren.getItemCount(); i++ )
{
  Item lchild = lchildren.getItemByIndex(i);
  ...
}
...

Exceptions

ExceptionCondition
System..::.Exception The instance is neither a single regular item (i.e. item referencing <Item> node) nor a logical item.

See Also