Inserts logical node with tag <not> under the parent node, which can be Item or Logical,
and returns an Item Object that represents a newly inserted logical node.
Namespace:
Aras.IOM
Assembly:
IOM (in IOM.dll) Version: 11.0.0.6296
Syntax
Visual Basic (Declaration) |
---|
Public Function newNOT As Item |
JScript |
---|
public function newNOT() : Item |
Return Value
Logical "NOT" item. Returned item shares
dom with
this item.
Remarks
Examples
CopyC#
...
var myItem = myInnovator.newItem('Foo','get');
var logicalNOT = myItem.newNOT();
logicalNOT.setProperty('foo','bar1');
logicalNOT.setPropertyCondition('foo', 'eq');
...
CopyC#
...
var myItem = myInnovator.newItem('Foo','get');
var logicalNOT = myItem.newNOT();
logicalNOT.setProperty('foo','bar1, bar2);
logicalNOT.setPropertyCondition('foo','in')
...
Exceptions
Exception | Condition |
---|
System..::.Exception |
If the instance is neither a single regular item (i.e. item referncing <Item> node) nor a logical item.
|
System..::.ArgumentException | this.node is read-only. |
See Also