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.9.36244
Syntaxpublic Item getLogicalChildren()
Public Function getLogicalChildren As Item
public Item getLogicalChildren()
public function getLogicalChildren() : Item
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.
ExceptionsException | Condition |
---|
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