diff --git a/docs/$.html b/docs/$.html index 07453958..53e989d4 100644 --- a/docs/$.html +++ b/docs/$.html @@ -1183,6 +1183,10 @@
Name | + + +Type | + + +Default | + + +Description | +
---|---|---|---|
oNode |
+
+
+ + + +$.oNode + + + + | + + ++ + | + + ++ + + + + + + The node to insert in the link | +
nodeInPort |
+
+
+ + + +int + + + + | + + ++ + 0 + + | + + ++ + + optional + + + + + + The inPort to use on the inserted node | +
nodeOutPort |
+
+
+ + + +int + + + + | + + ++ + 0 + + | + + ++ + + optional + + + + + + The outPort to use on the inserted node | +
nodeOutLink |
+
+
+ + + +int + + + + | + + ++ + 0 + + | + + ++ + + optional + + + + + + The outLink to use on the inserted node | +
Type | +Description | +
---|---|
+ + Array.<$.oLink> + + + | +an Array of two oLink objects that describe the new connections. | +
include("openHarmony.js")
+doc = $.scn
+var node1 = doc.$node("Top/Drawing")
+var node2 = doc.$node("Top/Composite")
+var node3 = doc.$node("Top/Transparency")
+
+var link = new $.oLink(node1, node2)
+link.insertNode(node3) // insert the Transparency node between the Drawing and Composite
+
+
+