From 9c1ab0f338d9ca52a5332a9e5192b1460cc72373 Mon Sep 17 00:00:00 2001 From: Andreas Dieckmann Date: Sat, 2 Nov 2024 08:31:14 +0100 Subject: [PATCH] #416 --- nodes/3.x/Document.IsWorkshared.dyf | 31 +- nodes/3.x/Document.SynchronizeWithCentral.dyf | 37 +- nodes/3.x/Document.Worksets.dyf | 31 +- nodes/3.x/Element.SetWorkset.dyf | 2 +- nodes/3.x/Element.Workset.dyf | 31 +- nodes/3.x/Workset.Kind.dyf | 27 +- .../3.x/dynamo/Revit.Elements.Workset.dyn | 645 ++++++++---------- 7 files changed, 361 insertions(+), 443 deletions(-) diff --git a/nodes/3.x/Document.IsWorkshared.dyf b/nodes/3.x/Document.IsWorkshared.dyf index 0159a78d..cbc04afe 100644 --- a/nodes/3.x/Document.IsWorkshared.dyf +++ b/nodes/3.x/Document.IsWorkshared.dyf @@ -29,12 +29,13 @@ ], "Outputs": [], "Replication": "Disabled", - "Description": "A function output, use with custom nodes" + "Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken" }, { "ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels", "NodeType": "PythonScriptNode", "Code": "import clr\r\nclr.AddReference(\"RevitServices\")\r\nimport RevitServices\r\nfrom RevitServices.Persistence import DocumentManager\r\n\r\ninputdoc = UnwrapElement(IN[1])\r\nif inputdoc == None:\r\n\tdoc = DocumentManager.Instance.CurrentDBDocument\r\nelif inputdoc.GetType().ToString() == \"Autodesk.Revit.DB.RevitLinkInstance\":\r\n\tdoc = inputdoc.GetLinkDocument()\r\nelif inputdoc.GetType().ToString() == \"Autodesk.Revit.DB.Document\":\r\n\tdoc = inputdoc\r\nelse: doc = None\r\n\r\nif doc.IsWorkshared: OUT = True\r\nelse: OUT = False", + "Engine": "CPython3", "VariableInputPorts": true, "Id": "9360058e8acd40b38a55a4891ad83340", "Inputs": [ @@ -69,7 +70,7 @@ } ], "Replication": "Disabled", - "Description": "Runs an embedded IronPython script." + "Description": "Führt ein eingebettetes Python-Skript aus." }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -95,7 +96,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -121,7 +122,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" } ], "Connectors": [ @@ -142,18 +143,20 @@ } ], "Dependencies": [], + "NodeLibraryDependencies": [], + "Author": "None provided", "Bindings": [], "View": { "Dynamo": { "ScaleFactor": 1.0, "HasRunWithoutCrash": false, "IsVisibleInDynamoLibrary": true, - "Version": "2.0.1.5055", + "Version": "2.12.1.8246", "RunType": "Manual", "RunPeriod": "1000" }, "Camera": { - "Name": "Background Preview", + "Name": "Hintergrundvorschau", "EyeX": -17.0, "EyeY": 24.0, "EyeZ": 50.0, @@ -166,41 +169,41 @@ }, "NodeViews": [ { + "ShowGeometry": true, + "Name": "Output", "Id": "8391a372b1134e1ab6eaaa1f0875826c", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Output", - "ShowGeometry": true, "Excluded": false, "X": 523.0, "Y": 0.0 }, { + "ShowGeometry": true, + "Name": "Python Script", "Id": "9360058e8acd40b38a55a4891ad83340", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Python Script", - "ShowGeometry": true, "Excluded": false, "X": 299.0, "Y": 0.0 }, { + "ShowGeometry": true, + "Name": "Input", "Id": "2dd78b858bdf45daa5122936e10fd86e", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Input", - "ShowGeometry": true, "Excluded": false, "X": 7.40363128491623, "Y": -23.0335195530727 }, { + "ShowGeometry": true, + "Name": "Input", "Id": "1bb94522f9ed4ec4a58f1f3b5499beed", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Input", - "ShowGeometry": true, "Excluded": false, "X": -212.237430167599, "Y": 60.2276536312851 diff --git a/nodes/3.x/Document.SynchronizeWithCentral.dyf b/nodes/3.x/Document.SynchronizeWithCentral.dyf index ea55976c..3833d3d4 100644 --- a/nodes/3.x/Document.SynchronizeWithCentral.dyf +++ b/nodes/3.x/Document.SynchronizeWithCentral.dyf @@ -14,6 +14,7 @@ "ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels", "NodeType": "PythonScriptNode", "Code": "import clr\r\nclr.AddReference('RevitAPI')\r\nfrom Autodesk.Revit.DB import *\r\n\r\nclr.AddReference(\"RevitServices\")\r\nimport RevitServices\r\nfrom RevitServices.Persistence import DocumentManager\r\nfrom RevitServices.Transactions import TransactionManager\r\n\r\nrelStandardWS = IN[0]\r\nrelViewWS = IN[1]\r\nrelFamWS = IN[2]\r\nrelUserWS = IN[3]\r\nrelCheckedOutElems = IN[4]\r\ncompact = IN[5]\r\nsaveLocalBefore = IN[6]\r\nsaveLocalAfter = IN[7]\r\ncomment = IN[8]\r\nrunme = IN[9]\r\n\r\nif runme:\r\n\tdoc = DocumentManager.Instance.CurrentDBDocument\r\n\ttOptions = TransactWithCentralOptions()\r\n\trOptions = RelinquishOptions(False)\r\n\trOptions.StandardWorksets = relStandardWS\r\n\trOptions.ViewWorksets = relViewWS\r\n\trOptions.FamilyWorksets = relFamWS\r\n\trOptions.UserWorksets = relUserWS\r\n\trOptions.CheckedOutElements = relCheckedOutElems\r\n\tsOptions = SynchronizeWithCentralOptions()\r\n\tsOptions.SetRelinquishOptions(rOptions)\r\n\tsOptions.Compact = compact\r\n\tsOptions.SaveLocalBefore = saveLocalBefore\r\n\tsOptions.SaveLocalAfter = saveLocalAfter\r\n\tsOptions.Comment = comment\r\n\tTransactionManager.Instance.ForceCloseTransaction()\r\n\ttry:\r\n\t\tdoc.SynchronizeWithCentral(tOptions, sOptions)\r\n\t\tOUT = True\r\n\texcept:\r\n\t\tOUT = False\r\nelse: OUT = False", + "Engine": "CPython3", "VariableInputPorts": true, "Id": "a685edba212f41cda361bf1055e741b1", "Inputs": [ @@ -120,7 +121,7 @@ } ], "Replication": "Disabled", - "Description": "Runs an embedded IronPython script." + "Description": "Führt ein eingebettetes Python-Skript aus." }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -146,7 +147,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", @@ -167,7 +168,7 @@ ], "Outputs": [], "Replication": "Disabled", - "Description": "A function output, use with custom nodes" + "Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -193,7 +194,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -219,7 +220,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -245,7 +246,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -271,7 +272,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -297,7 +298,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -323,7 +324,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -349,7 +350,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -375,7 +376,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -401,7 +402,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" } ], "Connectors": [ @@ -462,18 +463,20 @@ } ], "Dependencies": [], + "NodeLibraryDependencies": [], + "Author": "None provided", "Bindings": [], "View": { "Dynamo": { "ScaleFactor": 1.0, "HasRunWithoutCrash": false, "IsVisibleInDynamoLibrary": true, - "Version": "2.0.1.5055", + "Version": "2.12.1.8246", "RunType": "Manual", "RunPeriod": "1000" }, "Camera": { - "Name": "Background Preview", + "Name": "Hintergrundvorschau", "EyeX": -17.0, "EyeY": 24.0, "EyeZ": 50.0, @@ -607,8 +610,8 @@ } ], "Annotations": [], - "X": 700.03049994936055, - "Y": 229.51229327440646, - "Zoom": 0.46912748069240412 + "X": 253.99501879917074, + "Y": 162.75903483830933, + "Zoom": 0.87364640620662393 } } \ No newline at end of file diff --git a/nodes/3.x/Document.Worksets.dyf b/nodes/3.x/Document.Worksets.dyf index 67adf215..df9e02b0 100644 --- a/nodes/3.x/Document.Worksets.dyf +++ b/nodes/3.x/Document.Worksets.dyf @@ -14,6 +14,7 @@ "ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels", "NodeType": "PythonScriptNode", "Code": "import clr\r\nclr.AddReference('RevitAPI')\r\nfrom Autodesk.Revit.DB import *\r\nimport Autodesk\r\n\r\nclr.AddReference(\"RevitServices\")\r\nimport RevitServices\r\nfrom RevitServices.Persistence import DocumentManager\r\n\r\ninputdoc = UnwrapElement(IN[1])\r\nif inputdoc == None:\r\n\tdoc = DocumentManager.Instance.CurrentDBDocument\r\nelif inputdoc.GetType().ToString() == \"Autodesk.Revit.DB.RevitLinkInstance\":\r\n\tdoc = inputdoc.GetLinkDocument()\r\nelif inputdoc.GetType().ToString() == \"Autodesk.Revit.DB.Document\":\r\n\tdoc = inputdoc\r\nelse: doc = None\r\n\r\ncollector = FilteredWorksetCollector(doc)\r\nOUT = collector.ToWorksets()", + "Engine": "CPython3", "VariableInputPorts": true, "Id": "54d637dc517c456bbddd3ee945668544", "Inputs": [ @@ -48,7 +49,7 @@ } ], "Replication": "Disabled", - "Description": "Runs an embedded IronPython script." + "Description": "Führt ein eingebettetes Python-Skript aus." }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", @@ -69,7 +70,7 @@ ], "Outputs": [], "Replication": "Disabled", - "Description": "A function output, use with custom nodes" + "Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -95,7 +96,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", @@ -121,7 +122,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" } ], "Connectors": [ @@ -142,18 +143,20 @@ } ], "Dependencies": [], + "NodeLibraryDependencies": [], + "Author": "None provided", "Bindings": [], "View": { "Dynamo": { "ScaleFactor": 1.0, "HasRunWithoutCrash": false, "IsVisibleInDynamoLibrary": true, - "Version": "2.0.1.5055", + "Version": "2.12.1.8246", "RunType": "Manual", "RunPeriod": "1000" }, "Camera": { - "Name": "Background Preview", + "Name": "Hintergrundvorschau", "EyeX": -17.0, "EyeY": 24.0, "EyeZ": 50.0, @@ -166,41 +169,41 @@ }, "NodeViews": [ { + "ShowGeometry": true, + "Name": "Python Script", "Id": "54d637dc517c456bbddd3ee945668544", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Python Script", - "ShowGeometry": true, "Excluded": false, "X": 473.236033519552, "Y": -120.956005586592 }, { + "ShowGeometry": true, + "Name": "Output", "Id": "eec3102ca5ff4977ab73a84a4fd6acfb", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Output", - "ShowGeometry": true, "Excluded": false, "X": 697.236033519552, "Y": -120.956005586592 }, { + "ShowGeometry": true, + "Name": "Input", "Id": "9fb555890cfa45b895e96c8f19c9a19d", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Input", - "ShowGeometry": true, "Excluded": false, "X": -44.7639664804476, "Y": -149.956005586592 }, { + "ShowGeometry": true, + "Name": "Input", "Id": "b3d8f7a926bf47af97bdbd44d7b24919", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Input", - "ShowGeometry": true, "Excluded": false, "X": -44.7639664804476, "Y": -65.9560055865917 diff --git a/nodes/3.x/Element.SetWorkset.dyf b/nodes/3.x/Element.SetWorkset.dyf index c6987978..266678f4 100644 --- a/nodes/3.x/Element.SetWorkset.dyf +++ b/nodes/3.x/Element.SetWorkset.dyf @@ -14,7 +14,7 @@ "ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels", "NodeType": "PythonScriptNode", "Code": "import clr\r\nclr.AddReference('RevitAPI')\r\nfrom Autodesk.Revit.DB import *\r\n\r\nclr.AddReference(\"RevitServices\")\r\nimport RevitServices\r\nfrom RevitServices.Persistence import DocumentManager\r\nfrom RevitServices.Transactions import TransactionManager\r\n\r\ndoc = DocumentManager.Instance.CurrentDBDocument\r\nitems = UnwrapElement(IN[0])\r\nworksets = UnwrapElement(IN[1])\r\n\r\ndef SetWorkset(item, ws):\r\n\tif hasattr(ws, \"Id\"):\r\n\t\t# Is this an archi-lab workset?\r\n\t\tif isinstance(ws.Id, int): wsID = ws.Id\r\n\t\telse: wsID = ws.Id.IntegerValue\r\n\t\ttry:\r\n\t\t\titem.get_Parameter(BuiltInParameter.ELEM_PARTITION_PARAM).Set(wsID)\r\n\t\t\treturn True\r\n\t\texcept: return False\r\n\telse: return False\r\n\t\r\nTransactionManager.Instance.EnsureInTransaction(doc)\r\nif isinstance(IN[0], list):\r\n\tif isinstance(IN[1], list): OUT = [SetWorkset(x, y) for x, y in zip(items, worksets)]\r\n\telse: OUT = [SetWorkset(x, worksets) for x in items]\r\nelse:\r\n\tif isinstance(IN[1], list): OUT = SetWorkset(items, worksets[0])\r\n\telse: OUT = SetWorkset(items, worksets)\r\nTransactionManager.Instance.TransactionTaskDone()", - "Engine": "IronPython2", + "Engine": "CPython3", "VariableInputPorts": true, "Id": "358d530cdb3a48ad9412936b5afab472", "Inputs": [ diff --git a/nodes/3.x/Element.Workset.dyf b/nodes/3.x/Element.Workset.dyf index 7111d014..93c10a49 100644 --- a/nodes/3.x/Element.Workset.dyf +++ b/nodes/3.x/Element.Workset.dyf @@ -34,7 +34,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", @@ -55,12 +55,13 @@ ], "Outputs": [], "Replication": "Disabled", - "Description": "A function output, use with custom nodes" + "Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken" }, { "ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels", "NodeType": "PythonScriptNode", "Code": "import clr\r\nclr.AddReference('RevitAPI')\r\nfrom Autodesk.Revit.DB import *\r\n\r\ndef GetWorkset(item):\r\n\tif hasattr(item, \"WorksetId\"): return item.Document.GetWorksetTable().GetWorkset(item.WorksetId)\r\n\telse: return None\r\n\r\nitems = UnwrapElement(IN[0])\r\n\r\nif isinstance(IN[0], list): OUT = [GetWorkset(x) for x in items]\r\nelse: OUT = GetWorkset(items)", + "Engine": "CPython3", "VariableInputPorts": true, "Id": "45d7aa4e1c834abb97fe244854705e2b", "Inputs": [ @@ -86,7 +87,7 @@ } ], "Replication": "Disabled", - "Description": "Runs an embedded IronPython script." + "Description": "Führt ein eingebettetes Python-Skript aus." } ], "Connectors": [ @@ -102,18 +103,20 @@ } ], "Dependencies": [], + "NodeLibraryDependencies": [], + "Author": "None provided", "Bindings": [], "View": { "Dynamo": { "ScaleFactor": 1.0, "HasRunWithoutCrash": false, "IsVisibleInDynamoLibrary": true, - "Version": "2.0.1.5055", + "Version": "2.12.1.8246", "RunType": "Manual", "RunPeriod": "1000" }, "Camera": { - "Name": "Background Preview", + "Name": "Hintergrundvorschau", "EyeX": -17.0, "EyeY": 24.0, "EyeZ": 50.0, @@ -126,39 +129,39 @@ }, "NodeViews": [ { + "ShowGeometry": true, + "Name": "Input", "Id": "e295ad661e6e47f9aa71ef76096c2d8f", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Input", - "ShowGeometry": true, "Excluded": false, "X": 356.820070968837, "Y": 168.749571777649 }, { + "ShowGeometry": true, + "Name": "Output", "Id": "cb693fa3ded74ad1a6eaeb0a07cbc985", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Output", - "ShowGeometry": true, "Excluded": false, "X": 768.820070968837, "Y": 168.749571777649 }, { + "ShowGeometry": true, + "Name": "Python Script", "Id": "45d7aa4e1c834abb97fe244854705e2b", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Python Script", - "ShowGeometry": true, "Excluded": false, "X": 544.820070968837, "Y": 168.749571777649 } ], "Annotations": [], - "X": 153.0, - "Y": 385.0, - "Zoom": 1.0 + "X": -420.00761688660015, + "Y": -238.63171384930877, + "Zoom": 1.6001030088099994 } } \ No newline at end of file diff --git a/nodes/3.x/Workset.Kind.dyf b/nodes/3.x/Workset.Kind.dyf index 29a4605b..eb3e94e4 100644 --- a/nodes/3.x/Workset.Kind.dyf +++ b/nodes/3.x/Workset.Kind.dyf @@ -34,7 +34,7 @@ } ], "Replication": "Disabled", - "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + "Description": "Ein Funktionsparameter zur Verwendung mit benutzerdefinierten Blöcken.\r\n\r\nSie können den Typ und den Vorgabewert für den Parameter angeben, z. B.\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", @@ -55,12 +55,13 @@ ], "Outputs": [], "Replication": "Disabled", - "Description": "A function output, use with custom nodes" + "Description": "Eine Funktionsausgabe zur Verwendung mit benutzerdefinierten Blöcken" }, { "ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels", "NodeType": "PythonScriptNode", - "Code": "import clr\r\nclr.AddReference('RevitAPI')\r\nfrom Autodesk.Revit.DB import *\r\n\r\ndef WorksetKind(workset):\r\n\tif workset.GetType().ToString() == \"Autodesk.Revit.DB.Workset\":\r\n\t\treturn str(workset.Kind)\r\n\telif workset.GetType().ToString() == \"archilab.Revit.Elements.Workset\":\r\n\t\treturn \"Cannot retrieve the workset kind from a workset object generated by archi-lab nodes.\"\r\n\telse: return None\r\n\r\nworksets = UnwrapElement(IN[0])\r\n\r\nif isinstance(IN[0], list): OUT = [WorksetKind(x) for x in worksets]\r\nelse: OUT = WorksetKind(worksets)", + "Code": "import clr\r\nimport System\r\nclr.AddReference('RevitAPI')\r\nfrom Autodesk.Revit.DB import *\r\n\r\ndef GetWorksetKind(workset):\r\n\tif workset.GetType().ToString() == \"Autodesk.Revit.DB.Workset\":\r\n\t\treturn System.Enum.GetName(WorksetKind, workset.Kind)\r\n\telif workset.GetType().ToString() == \"archilab.Revit.Elements.Workset\":\r\n\t\treturn \"Cannot retrieve the workset kind from a workset object generated by archi-lab nodes.\"\r\n\telse: return None\r\n\r\nworksets = UnwrapElement(IN[0])\r\n\r\nif isinstance(IN[0], list): OUT = [GetWorksetKind(x) for x in worksets]\r\nelse: OUT = GetWorksetKind(worksets)", + "Engine": "CPython3", "VariableInputPorts": true, "Id": "1b67f1ec47624c4bbd11a1baadbdd6dc", "Inputs": [ @@ -86,7 +87,7 @@ } ], "Replication": "Disabled", - "Description": "Runs an embedded IronPython script." + "Description": "Führt ein eingebettetes Python-Skript aus." } ], "Connectors": [ @@ -102,18 +103,20 @@ } ], "Dependencies": [], + "NodeLibraryDependencies": [], + "Author": "None provided", "Bindings": [], "View": { "Dynamo": { "ScaleFactor": 1.0, "HasRunWithoutCrash": false, "IsVisibleInDynamoLibrary": true, - "Version": "2.0.1.5055", + "Version": "2.12.1.8246", "RunType": "Manual", "RunPeriod": "1000" }, "Camera": { - "Name": "Background Preview", + "Name": "Hintergrundvorschau", "EyeX": -17.0, "EyeY": 24.0, "EyeZ": 50.0, @@ -126,31 +129,31 @@ }, "NodeViews": [ { + "ShowGeometry": true, + "Name": "Input", "Id": "e295ad661e6e47f9aa71ef76096c2d8f", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Input", - "ShowGeometry": true, "Excluded": false, "X": 215.496055109139, "Y": -126.0 }, { + "ShowGeometry": true, + "Name": "Output", "Id": "cb693fa3ded74ad1a6eaeb0a07cbc985", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Output", - "ShowGeometry": true, "Excluded": false, "X": 627.496055109139, "Y": -126.0 }, { + "ShowGeometry": true, + "Name": "Python Script", "Id": "1b67f1ec47624c4bbd11a1baadbdd6dc", "IsSetAsInput": false, "IsSetAsOutput": false, - "Name": "Python Script", - "ShowGeometry": true, "Excluded": false, "X": 403.496055109139, "Y": -126.0 diff --git a/package_samples/3.x/dynamo/Revit.Elements.Workset.dyn b/package_samples/3.x/dynamo/Revit.Elements.Workset.dyn index 9c78ad5c..b2065962 100644 --- a/package_samples/3.x/dynamo/Revit.Elements.Workset.dyn +++ b/package_samples/3.x/dynamo/Revit.Elements.Workset.dyn @@ -11,81 +11,81 @@ "Id": "81286f8470ed4f51b72969d571772983", "Name": "Relinquish Project Standard Worksets", "Type": "boolean", - "Type2": "boolean", "Value": "true", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "3a0f5de2115641a682b38bcdf1bb635f", "Name": "Compact Central Model", "Type": "boolean", - "Type2": "boolean", "Value": "false", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "72b8146ba39146698d36431cc51e461d", "Name": "Sync Comment", "Type": "string", - "Type2": "string", "Value": "Synched with Dynamo", - "Description": "Creates a string" + "Description": "Erstellt eine Zeichenfolge.", + "SelectedIndex": 0 }, { "Id": "2345fb68cafb4ba4bb6a0ad18e0fef4d", "Name": "Save Local File After Sync", "Type": "boolean", - "Type2": "boolean", "Value": "true", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "8ea8ef0f4d27428a8289747873708cd4", "Name": "Sync With Central", "Type": "boolean", - "Type2": "boolean", "Value": "true", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "61aa27d6a0d0470db0795a075b84ac6f", "Name": "Relinquish Borrowed Elements", "Type": "boolean", - "Type2": "boolean", "Value": "true", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "53400d26f6304307b28cc4fbeba0c7e3", "Name": "Relinquish View Worksets", "Type": "boolean", - "Type2": "boolean", "Value": "true", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "3c9ac520e57f47baa40d2535128ff51c", "Name": "Relinquish Family Worksets", "Type": "boolean", - "Type2": "boolean", "Value": "true", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "2ece7016573a4a818d005e3699f288a6", "Name": "Relinquish User Created Worksets", "Type": "boolean", - "Type2": "boolean", "Value": "true", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 }, { "Id": "496f0435db0f4544978b5f43da92443a", "Name": "Save Local File Before Sync", "Type": "boolean", - "Type2": "boolean", "Value": "false", - "Description": "Enables selection between True and False" + "Description": "Auswahl zwischen True und False", + "SelectedIndex": 0 } ], "Outputs": [], @@ -94,8 +94,8 @@ "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", "FunctionSignature": "4cbc7003-367c-47e7-ad3a-31b7737b3085", "FunctionType": "Graph", - "Id": "4f04084c76274b5d8fe1db8fdddf88e2", "NodeType": "FunctionNode", + "Id": "4f04084c76274b5d8fe1db8fdddf88e2", "Inputs": [ { "Id": "05574c2b4a624bb3a183de3b840616ac", @@ -111,7 +111,7 @@ { "Id": "78c13ae88fa843c9b3969ba49e62fdb0", "Name": "kind", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -125,13 +125,13 @@ "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", "FunctionSignature": "90dc6979-b53e-49a6-805d-ecfeba189414", "FunctionType": "Graph", - "Id": "aef5dea37407444d9ed9ffb07c9bad3e", "NodeType": "FunctionNode", + "Id": "aef5dea37407444d9ed9ffb07c9bad3e", "Inputs": [ { "Id": "304b4b29382e4325ac6da60b39a0349d", "Name": "toggle", - "Description": "bool\nDefault value : true", + "Description": "bool\nVorgabewert : true", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -140,7 +140,7 @@ { "Id": "f46f930cad6e4b42afc536588e8e3955", "Name": "docOrRevitLinkInstance", - "Description": " Use only if you want to query a linked model\n\nvar\nDefault value : null", + "Description": " Use only if you want to query a linked model\n\nvar\nVorgabewert : null", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -151,7 +151,7 @@ { "Id": "5dbd5e0c4388481ba2ad6030741d698a", "Name": "worksets", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -163,10 +163,8 @@ }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 200.0, - "WatchHeight": 200.0, - "Id": "b2c1f0fae56c4678bd0e48e6ccf4563d", "NodeType": "ExtensionNode", + "Id": "b2c1f0fae56c4678bd0e48e6ccf4563d", "Inputs": [ { "Id": "dd8968451759498f9372559caf53764b", @@ -190,14 +188,12 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 200.0, - "WatchHeight": 200.0, - "Id": "64363fab57b94852ae02520760251475", "NodeType": "ExtensionNode", + "Id": "64363fab57b94852ae02520760251475", "Inputs": [ { "Id": "9c3daad8388546709e08b3d6ec15c418", @@ -221,12 +217,13 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "81286f8470ed4f51b72969d571772983", "NodeType": "BooleanInputNode", + "InputValue": true, + "Id": "81286f8470ed4f51b72969d571772983", "Inputs": [], "Outputs": [ { @@ -240,13 +237,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": true + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "3a0f5de2115641a682b38bcdf1bb635f", "NodeType": "BooleanInputNode", + "InputValue": false, + "Id": "3a0f5de2115641a682b38bcdf1bb635f", "Inputs": [], "Outputs": [ { @@ -260,13 +257,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": false + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.StringInput, CoreNodeModels", - "Id": "72b8146ba39146698d36431cc51e461d", "NodeType": "StringInputNode", + "InputValue": "Synched with Dynamo", + "Id": "72b8146ba39146698d36431cc51e461d", "Inputs": [], "Outputs": [ { @@ -280,15 +277,12 @@ } ], "Replication": "Disabled", - "Description": "Creates a string", - "InputValue": "Synched with Dynamo" + "Description": "Erstellt eine Zeichenfolge." }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 49.6, - "WatchHeight": 38.4, - "Id": "f16fcf7705634a55b951fb429627712f", "NodeType": "ExtensionNode", + "Id": "f16fcf7705634a55b951fb429627712f", "Inputs": [ { "Id": "e1a5747ec64a4d57a9a6f92382edd591", @@ -312,19 +306,19 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", "FunctionSignature": "59b74c65-bbdc-4bdc-b4d1-9482b4441278", "FunctionType": "Graph", - "Id": "606def05db3448d7b20dc391e81b5ce6", "NodeType": "FunctionNode", + "Id": "606def05db3448d7b20dc391e81b5ce6", "Inputs": [ { "Id": "cf3f1d71de8446a48666bd446dee1a89", "Name": "relinquishProjectStandardWorksets", - "Description": "bool\nDefault value : false", + "Description": "bool\nVorgabewert : false", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -333,7 +327,7 @@ { "Id": "643bf4e27398428fb0b4622fa61e0e73", "Name": "relinquishViewWorksets", - "Description": "bool\nDefault value : false", + "Description": "bool\nVorgabewert : false", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -342,7 +336,7 @@ { "Id": "e3ea2f650aaf4b6395ab95ec4b4c1fe9", "Name": "relinquishFamilyWorksets", - "Description": "bool\nDefault value : false", + "Description": "bool\nVorgabewert : false", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -351,7 +345,7 @@ { "Id": "985696217d3740f2ba3d4b0d430b6ba0", "Name": "relinquishUserCreatedWorksets", - "Description": "bool\nDefault value : false", + "Description": "bool\nVorgabewert : false", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -360,7 +354,7 @@ { "Id": "2394c0d71e6d434f912b48f424f52ab4", "Name": "relinquishBorrowedElements", - "Description": "bool\nDefault value : false", + "Description": "bool\nVorgabewert : false", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -369,7 +363,7 @@ { "Id": "a6331829bcab4a13b7d8bd1603c912a0", "Name": "compactCentralModel", - "Description": "bool\nDefault value : false", + "Description": "bool\nVorgabewert : false", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -378,7 +372,7 @@ { "Id": "b7c2338749d4424ebccc6cd98598ec17", "Name": "saveLocalFileBeforeSync", - "Description": "bool\nDefault value : true", + "Description": "bool\nVorgabewert : true", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -387,7 +381,7 @@ { "Id": "aca6e83157f94194b285ba4846d85c09", "Name": "saveLocalFileAfterSync", - "Description": "bool\nDefault value : true", + "Description": "bool\nVorgabewert : true", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -396,7 +390,7 @@ { "Id": "a10353a64bf44166824348aa029cdeb5", "Name": "comment", - "Description": "string\nDefault value : \"\"", + "Description": "string\nVorgabewert : \"\"", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -405,7 +399,7 @@ { "Id": "8e198b4e0c8e47249b25244e53fe1ba4", "Name": "runMe", - "Description": "bool\nDefault value : false", + "Description": "bool\nVorgabewert : false", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -416,7 +410,7 @@ { "Id": "1230686ed8594434b3dc556f86c8b25e", "Name": "success", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -428,8 +422,9 @@ }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "2345fb68cafb4ba4bb6a0ad18e0fef4d", "NodeType": "BooleanInputNode", + "InputValue": true, + "Id": "2345fb68cafb4ba4bb6a0ad18e0fef4d", "Inputs": [], "Outputs": [ { @@ -443,13 +438,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": true + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "8ea8ef0f4d27428a8289747873708cd4", "NodeType": "BooleanInputNode", + "InputValue": true, + "Id": "8ea8ef0f4d27428a8289747873708cd4", "Inputs": [], "Outputs": [ { @@ -463,13 +458,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": true + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "61aa27d6a0d0470db0795a075b84ac6f", "NodeType": "BooleanInputNode", + "InputValue": true, + "Id": "61aa27d6a0d0470db0795a075b84ac6f", "Inputs": [], "Outputs": [ { @@ -483,13 +478,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": true + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "53400d26f6304307b28cc4fbeba0c7e3", "NodeType": "BooleanInputNode", + "InputValue": true, + "Id": "53400d26f6304307b28cc4fbeba0c7e3", "Inputs": [], "Outputs": [ { @@ -503,13 +498,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": true + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "3c9ac520e57f47baa40d2535128ff51c", "NodeType": "BooleanInputNode", + "InputValue": true, + "Id": "3c9ac520e57f47baa40d2535128ff51c", "Inputs": [], "Outputs": [ { @@ -523,13 +518,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": true + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "2ece7016573a4a818d005e3699f288a6", "NodeType": "BooleanInputNode", + "InputValue": true, + "Id": "2ece7016573a4a818d005e3699f288a6", "Inputs": [], "Outputs": [ { @@ -543,13 +538,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": true + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.BoolSelector, CoreNodeModels", - "Id": "496f0435db0f4544978b5f43da92443a", "NodeType": "BooleanInputNode", + "InputValue": false, + "Id": "496f0435db0f4544978b5f43da92443a", "Inputs": [], "Outputs": [ { @@ -563,13 +558,13 @@ } ], "Replication": "Disabled", - "Description": "Enables selection between True and False", - "InputValue": false + "Description": "Auswahl zwischen True und False" }, { "ConcreteType": "CoreNodeModels.Input.StringInput, CoreNodeModels", - "Id": "221fc82a644a43d595b7071e2981c9b2", "NodeType": "StringInputNode", + "InputValue": "OST_Levels", + "Id": "221fc82a644a43d595b7071e2981c9b2", "Inputs": [], "Outputs": [ { @@ -583,15 +578,14 @@ } ], "Replication": "Disabled", - "Description": "Creates a string", - "InputValue": "OST_Levels" + "Description": "Erstellt eine Zeichenfolge." }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", "FunctionSignature": "d2b11c37-6e44-4479-beca-578b82cfe32e", "FunctionType": "Graph", - "Id": "39e0d043ef2b403c9fb4e17d1f563a12", "NodeType": "FunctionNode", + "Id": "39e0d043ef2b403c9fb4e17d1f563a12", "Inputs": [ { "Id": "a484ad861ad6419483b3b8b30f8f87d9", @@ -605,7 +599,7 @@ { "Id": "000b65a424f74f15b8ee21f5c44580f6", "Name": "toggle", - "Description": "bool\nDefault value : true", + "Description": "bool\nVorgabewert : true", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -614,7 +608,7 @@ { "Id": "18d5ab36c502487d8a25846f0d028174", "Name": "docOrRevitLinkInstance", - "Description": " Use only if you want to query a linked model\n\nvar\nDefault value : null", + "Description": " Use only if you want to query a linked model\n\nvar\nVorgabewert : null", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -625,7 +619,7 @@ { "Id": "565e8f8cd45f47a0b3653b18d75a3520", "Name": "elements", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -637,10 +631,8 @@ }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 200.0, - "WatchHeight": 200.0, - "Id": "e79dbf60d26f41479271c7789d491a6a", "NodeType": "ExtensionNode", + "Id": "e79dbf60d26f41479271c7789d491a6a", "Inputs": [ { "Id": "ab149895864b4bac993610135670d875", @@ -664,14 +656,14 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", "FunctionSignature": "35d5bbd0-79d7-43a9-af54-2b366d290d4a", "FunctionType": "Graph", - "Id": "4304e87644314502b030174c7c65aa4e", "NodeType": "FunctionNode", + "Id": "4304e87644314502b030174c7c65aa4e", "Inputs": [ { "Id": "2af513f03a794582a85a25aac7c3aa85", @@ -687,7 +679,7 @@ { "Id": "78b769c018df4187b45ba4e4c9728cba", "Name": "workset", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -699,10 +691,8 @@ }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 200.0, - "WatchHeight": 200.0, - "Id": "31d4e6c2778e4abebc315efaa2e1fb94", "NodeType": "ExtensionNode", + "Id": "31d4e6c2778e4abebc315efaa2e1fb94", "Inputs": [ { "Id": "550c97ebd2c742afae3d5df516bb19f9", @@ -726,14 +716,14 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", "FunctionSignature": "c3252e3e-c023-483c-97b5-439d61de237b", "FunctionType": "Graph", - "Id": "1605de02d8c445048ee1138e1b3095fa", "NodeType": "FunctionNode", + "Id": "1605de02d8c445048ee1138e1b3095fa", "Inputs": [ { "Id": "8d9b7367724f4ae29a6ca0d5080183b4", @@ -758,7 +748,7 @@ { "Id": "6d0cb948f454421ea0a3d193cb6c3bb0", "Name": "elements", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -767,7 +757,7 @@ { "Id": "169b8f91d0904816a921c84d98e21356", "Name": "success", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -779,13 +769,14 @@ }, { "ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore", - "Id": "870864f73b064328872e5b5f718bf484", "NodeType": "FunctionNode", + "FunctionSignature": "DSCore.List.FirstItem@var[]..[]", + "Id": "870864f73b064328872e5b5f718bf484", "Inputs": [ { "Id": "eab3ef7e2fa8428cbd39ce1b0b4b6bb8", "Name": "list", - "Description": "List to get the first item from.\n\nvar[]..[]", + "Description": "Liste, deren erstes Element abgerufen werden soll\n\nvar[]..[]", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -796,26 +787,26 @@ { "Id": "e6a98992b0a74741889f65a12bcf7383", "Name": "item", - "Description": "First item in the list.", + "Description": "Das erste Element in der Liste", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, "KeepListStructure": false } ], - "FunctionSignature": "DSCore.List.FirstItem@var[]..[]", "Replication": "Auto", - "Description": "Returns the first item in a list.\n\nList.FirstItem (list: var[]..[]): var[]..[]" + "Description": "Gibt das erste Element in einer Liste zurück.\n\nList.FirstItem (list: var[]..[]): var[]..[]" }, { "ConcreteType": "Dynamo.Graph.Nodes.ZeroTouch.DSFunction, DynamoCore", - "Id": "7eacfd9e5905401a9f16fa43921a15e2", "NodeType": "FunctionNode", + "FunctionSignature": "DSCore.List.FirstItem@var[]..[]", + "Id": "7eacfd9e5905401a9f16fa43921a15e2", "Inputs": [ { "Id": "1e8f4c584b9c4613b4357e98d70ccf8d", "Name": "list", - "Description": "List to get the first item from.\n\nvar[]..[]", + "Description": "Liste, deren erstes Element abgerufen werden soll\n\nvar[]..[]", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -826,23 +817,20 @@ { "Id": "1fe5987236e84ef6b6f193348e5d14f6", "Name": "item", - "Description": "First item in the list.", + "Description": "Das erste Element in der Liste", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, "KeepListStructure": false } ], - "FunctionSignature": "DSCore.List.FirstItem@var[]..[]", "Replication": "Auto", - "Description": "Returns the first item in a list.\n\nList.FirstItem (list: var[]..[]): var[]..[]" + "Description": "Gibt das erste Element in einer Liste zurück.\n\nList.FirstItem (list: var[]..[]): var[]..[]" }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 260.0, - "WatchHeight": 38.4, - "Id": "cf0632ee82f046ee984f06de035bb809", "NodeType": "ExtensionNode", + "Id": "cf0632ee82f046ee984f06de035bb809", "Inputs": [ { "Id": "a130b3fb3c524cc6a46eb3b49b1b9a99", @@ -866,14 +854,12 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 49.6, - "WatchHeight": 38.4, - "Id": "8d36de5fc7f14ad3911f6cd397e7be36", "NodeType": "ExtensionNode", + "Id": "8d36de5fc7f14ad3911f6cd397e7be36", "Inputs": [ { "Id": "5b455d8c386142beae945e0d587ac7a2", @@ -897,19 +883,19 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" }, { "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", "FunctionSignature": "070f6953-0854-4645-8eb5-9b4663673b79", "FunctionType": "Graph", - "Id": "bc78737e3d6d4b1fa2e47e04b46dee01", "NodeType": "FunctionNode", + "Id": "bc78737e3d6d4b1fa2e47e04b46dee01", "Inputs": [ { "Id": "b3e26fd9b0a54c0882834f88b6ae958f", "Name": "toggle", - "Description": "bool\nDefault value : true", + "Description": "bool\nVorgabewert : true", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -918,7 +904,7 @@ { "Id": "b52c68447a184a2396c1415ed2a769ab", "Name": "docOrRevitLinkInstance", - "Description": " Use only if you want to query a linked model\n\nvar\nDefault value : null", + "Description": " Use only if you want to query a linked model\n\nvar\nVorgabewert : null", "UsingDefaultValue": true, "Level": 2, "UseLevels": false, @@ -929,7 +915,7 @@ { "Id": "1652744056d4404d88711478cd11c03b", "Name": "bool", - "Description": "return value", + "Description": "Rückgabewert", "UsingDefaultValue": false, "Level": 2, "UseLevels": false, @@ -941,10 +927,8 @@ }, { "ConcreteType": "CoreNodeModels.Watch, CoreNodeModels", - "WatchWidth": 49.6, - "WatchHeight": 38.4, - "Id": "626d1405a19044be9f76cb99f51ff933", "NodeType": "ExtensionNode", + "Id": "626d1405a19044be9f76cb99f51ff933", "Inputs": [ { "Id": "6a907b41960a439da5fe7f57eb7d066a", @@ -968,159 +952,134 @@ } ], "Replication": "Disabled", - "Description": "Visualizes a node's output" + "Description": "Visualisierung der Ausgabe des Blocks" } ], "Connectors": [ { "Start": "78c13ae88fa843c9b3969ba49e62fdb0", "End": "dd8968451759498f9372559caf53764b", - "Id": "25d012e56389410ebb16a7d2786e2cfb", - "IsHidden": "False" + "Id": "25d012e56389410ebb16a7d2786e2cfb" }, { "Start": "5dbd5e0c4388481ba2ad6030741d698a", "End": "9c3daad8388546709e08b3d6ec15c418", - "Id": "d69c3e43fd3c4b4caa64ba8629a8464e", - "IsHidden": "False" + "Id": "d69c3e43fd3c4b4caa64ba8629a8464e" }, { "Start": "0f581b1653b343488d0707ea18b7b1db", - "End": "05574c2b4a624bb3a183de3b840616ac", - "Id": "b4c5da66d7fc482198e5fde2c4a8488c", - "IsHidden": "False" + "End": "1e8f4c584b9c4613b4357e98d70ccf8d", + "Id": "522d56a802d941129eaa47778f50302a" }, { "Start": "0f581b1653b343488d0707ea18b7b1db", - "End": "1e8f4c584b9c4613b4357e98d70ccf8d", - "Id": "522d56a802d941129eaa47778f50302a", - "IsHidden": "False" + "End": "05574c2b4a624bb3a183de3b840616ac", + "Id": "2a14399ca2ee4d5b81b7d3b83a487343" }, { "Start": "35fd3bffa1e54b89be62847714fae6fa", "End": "cf3f1d71de8446a48666bd446dee1a89", - "Id": "354a01f7f8ff4196b81de5cd9e892467", - "IsHidden": "False" + "Id": "354a01f7f8ff4196b81de5cd9e892467" }, { "Start": "9e282175bab248cfa32f413a83c35c1f", "End": "a6331829bcab4a13b7d8bd1603c912a0", - "Id": "2fd92c3f40e445159dae14586e669817", - "IsHidden": "False" + "Id": "2fd92c3f40e445159dae14586e669817" }, { "Start": "dc90ca41b8954f56949fff81193b7617", "End": "a10353a64bf44166824348aa029cdeb5", - "Id": "7811d253682847b7abdf017cb9798e69", - "IsHidden": "False" + "Id": "7811d253682847b7abdf017cb9798e69" }, { "Start": "1230686ed8594434b3dc556f86c8b25e", "End": "e1a5747ec64a4d57a9a6f92382edd591", - "Id": "45cc38c2e179483d9b099a8a0e62e2ba", - "IsHidden": "False" + "Id": "45cc38c2e179483d9b099a8a0e62e2ba" }, { "Start": "2684be0a67b348f4875d13249288055c", "End": "aca6e83157f94194b285ba4846d85c09", - "Id": "85bfad86b7814d32b549c95a8dccb2d4", - "IsHidden": "False" + "Id": "85bfad86b7814d32b549c95a8dccb2d4" }, { "Start": "38d336aaae6c4df8bcd186df40c3854e", "End": "8e198b4e0c8e47249b25244e53fe1ba4", - "Id": "19edb9e5922045bc8b3c4f1243912a90", - "IsHidden": "False" + "Id": "19edb9e5922045bc8b3c4f1243912a90" }, { "Start": "b291840b9fae44859c427914761ceca9", "End": "2394c0d71e6d434f912b48f424f52ab4", - "Id": "fa9db1e8f0df452b8392c6de0dc398b0", - "IsHidden": "False" + "Id": "fa9db1e8f0df452b8392c6de0dc398b0" }, { "Start": "2be35f1ffb16413f9f32b69e9e30030f", "End": "643bf4e27398428fb0b4622fa61e0e73", - "Id": "0090127cba944a68ae869b1e02b3b810", - "IsHidden": "False" + "Id": "0090127cba944a68ae869b1e02b3b810" }, { "Start": "21d85958ed724e8dbfc0ce6ea5864e6c", "End": "e3ea2f650aaf4b6395ab95ec4b4c1fe9", - "Id": "6c66335628594b6c836a377970681949", - "IsHidden": "False" + "Id": "6c66335628594b6c836a377970681949" }, { "Start": "d3ea71706c0d42f78788edba120360a5", "End": "985696217d3740f2ba3d4b0d430b6ba0", - "Id": "1ff66ee2209f42dfb24491b06c65f995", - "IsHidden": "False" + "Id": "1ff66ee2209f42dfb24491b06c65f995" }, { "Start": "67758f6c3ad5482d97607e1d3b07c56c", "End": "b7c2338749d4424ebccc6cd98598ec17", - "Id": "4e8008e7548a4d0081f0a372bb65bf80", - "IsHidden": "False" + "Id": "4e8008e7548a4d0081f0a372bb65bf80" }, { "Start": "f8957b9ebadd472485707ef94196c6d6", "End": "a484ad861ad6419483b3b8b30f8f87d9", - "Id": "39e5a44c90d04628ba59d87b45d27624", - "IsHidden": "False" + "Id": "39e5a44c90d04628ba59d87b45d27624" }, { "Start": "565e8f8cd45f47a0b3653b18d75a3520", "End": "ab149895864b4bac993610135670d875", - "Id": "b0f8fbff101e42b4bd78e10b51226009", - "IsHidden": "False" + "Id": "8b22e4a5a8854868b3e5641f6a765475" }, { "Start": "641fa1cb59af4fecb9f5cbf9e83caa9f", "End": "2af513f03a794582a85a25aac7c3aa85", - "Id": "44b2f56edf114201b56fd7a3a32f30c0", - "IsHidden": "False" + "Id": "44b2f56edf114201b56fd7a3a32f30c0" }, { "Start": "641fa1cb59af4fecb9f5cbf9e83caa9f", "End": "eab3ef7e2fa8428cbd39ce1b0b4b6bb8", - "Id": "0a8aa74660f94c8eb5f7dc6ddd5fe5ae", - "IsHidden": "False" + "Id": "0a8aa74660f94c8eb5f7dc6ddd5fe5ae" }, { "Start": "78b769c018df4187b45ba4e4c9728cba", "End": "550c97ebd2c742afae3d5df516bb19f9", - "Id": "89015c3914d84835b8c82181b53838b5", - "IsHidden": "False" + "Id": "89015c3914d84835b8c82181b53838b5" }, { "Start": "6d0cb948f454421ea0a3d193cb6c3bb0", "End": "a130b3fb3c524cc6a46eb3b49b1b9a99", - "Id": "42f7f1222e62474ea6c3280adb60540f", - "IsHidden": "False" + "Id": "42f7f1222e62474ea6c3280adb60540f" }, { "Start": "169b8f91d0904816a921c84d98e21356", "End": "5b455d8c386142beae945e0d587ac7a2", - "Id": "ab0cb5f6d4f348669815dfbce0dbcac5", - "IsHidden": "False" + "Id": "ab0cb5f6d4f348669815dfbce0dbcac5" }, { "Start": "e6a98992b0a74741889f65a12bcf7383", "End": "40736a46958f4d13ad6aeded7f4fefb3", - "Id": "aa49fb5c9d014a5d87d77b3ee5da1dbe", - "IsHidden": "False" + "Id": "aa49fb5c9d014a5d87d77b3ee5da1dbe" }, { "Start": "1fe5987236e84ef6b6f193348e5d14f6", "End": "8d9b7367724f4ae29a6ca0d5080183b4", - "Id": "4fc3bf45de65428c837371e019baf699", - "IsHidden": "False" + "Id": "4fc3bf45de65428c837371e019baf699" }, { "Start": "1652744056d4404d88711478cd11c03b", "End": "6a907b41960a439da5fe7f57eb7d066a", - "Id": "c32d2d99a9014359bbcf644ed037fb91", - "IsHidden": "False" + "Id": "c32d2d99a9014359bbcf644ed037fb91" } ], "Dependencies": [ @@ -1135,7 +1094,7 @@ "NodeLibraryDependencies": [ { "Name": "Clockwork for Dynamo 2.x", - "Version": "2.6.0", + "Version": "2.12.2", "ReferenceType": "Package", "Nodes": [ "4f04084c76274b5d8fe1db8fdddf88e2", @@ -1148,7 +1107,6 @@ ] } ], - "EnableLegacyPolyCurveBehavior": true, "Thumbnail": "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", "GraphDocumentationURL": "https://github.com/andydandy74/ClockworkForDynamo", "ExtensionWorkspaceData": [ @@ -1167,7 +1125,7 @@ ], "Author": "Andreas Dieckmann", "Linting": { - "activeLinter": "None", + "activeLinter": "Keine", "activeLinterId": "7b75fb44-43fd-4631-a878-29f4d5d8399a", "warningCount": 0, "errorCount": 0 @@ -1178,12 +1136,12 @@ "ScaleFactor": 1.0, "HasRunWithoutCrash": true, "IsVisibleInDynamoLibrary": true, - "Version": "3.2.1.5366", + "Version": "2.12.1.8246", "RunType": "Manual", "RunPeriod": "1000" }, "Camera": { - "Name": "_Background Preview", + "Name": "Hintergrundvorschau", "EyeX": -17.0, "EyeY": 24.0, "EyeZ": 50.0, @@ -1194,388 +1152,359 @@ "UpY": 1.0, "UpZ": 0.0 }, - "ConnectorPins": [], "NodeViews": [ { - "Id": "4f04084c76274b5d8fe1db8fdddf88e2", + "ShowGeometry": true, "Name": "Workset.Kind", + "Id": "4f04084c76274b5d8fe1db8fdddf88e2", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 2537.968868618222, - "Y": 961.3816654193681 + "X": 2537.9688686182221, + "Y": 961.38166541936812 }, { - "Id": "aef5dea37407444d9ed9ffb07c9bad3e", + "ShowGeometry": true, "Name": "Document.Worksets", + "Id": "aef5dea37407444d9ed9ffb07c9bad3e", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1465.1463593284614, "Y": 955.8971177524262 }, { - "Id": "b2c1f0fae56c4678bd0e48e6ccf4563d", + "ShowGeometry": true, "Name": "Watch", + "Id": "b2c1f0fae56c4678bd0e48e6ccf4563d", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 2830.968868618222, - "Y": 961.3816654193681 + "X": 2830.9688686182221, + "Y": 961.38166541936812 }, { - "Id": "64363fab57b94852ae02520760251475", + "ShowGeometry": true, "Name": "Watch", + "Id": "64363fab57b94852ae02520760251475", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1872.1463593284614, "Y": 955.8971177524262 }, { - "Id": "81286f8470ed4f51b72969d571772983", + "ShowGeometry": true, "Name": "Relinquish Project Standard Worksets", + "Id": "81286f8470ed4f51b72969d571772983", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 849.9233229746492, + "X": 849.92332297464918, "Y": 795.313903196065 }, { - "Id": "3a0f5de2115641a682b38bcdf1bb635f", + "ShowGeometry": true, "Name": "Compact Central Model", + "Id": "3a0f5de2115641a682b38bcdf1bb635f", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 850.7309641221193, - "Y": 1543.066046451197 + "Y": 1543.0660464511971 }, { - "Id": "72b8146ba39146698d36431cc51e461d", + "ShowGeometry": true, "Name": "Sync Comment", + "Id": "72b8146ba39146698d36431cc51e461d", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 851.2059058281208, + "X": 851.20590582812076, "Y": 1991.1262868192684 }, { - "Id": "f16fcf7705634a55b951fb429627712f", + "ShowGeometry": true, "Name": "Watch", + "Id": "f16fcf7705634a55b951fb429627712f", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1939.1062079181359, "Y": 1355.7393679497195 }, { - "Id": "606def05db3448d7b20dc391e81b5ce6", + "ShowGeometry": true, "Name": "Document.SynchronizeWithCentral", + "Id": "606def05db3448d7b20dc391e81b5ce6", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1473.1062079181359, "Y": 1355.7393679497195 }, { - "Id": "2345fb68cafb4ba4bb6a0ad18e0fef4d", + "ShowGeometry": true, "Name": "Save Local File After Sync", + "Id": "2345fb68cafb4ba4bb6a0ad18e0fef4d", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 847.2422705311483, + "X": 847.24227053114828, "Y": 1842.9012520098745 }, { - "Id": "8ea8ef0f4d27428a8289747873708cd4", + "ShowGeometry": true, "Name": "Sync With Central", + "Id": "8ea8ef0f4d27428a8289747873708cd4", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 845.3982069032896, - "Y": 639.6104315682501 + "X": 845.39820690328963, + "Y": 639.61043156825008 }, { - "Id": "61aa27d6a0d0470db0795a075b84ac6f", + "ShowGeometry": true, "Name": "Relinquish Borrowed Elements", + "Id": "61aa27d6a0d0470db0795a075b84ac6f", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 851.9708398723783, + "X": 851.97083987237829, "Y": 1395.8736875986676 }, { - "Id": "53400d26f6304307b28cc4fbeba0c7e3", + "ShowGeometry": true, "Name": "Relinquish View Worksets", + "Id": "53400d26f6304307b28cc4fbeba0c7e3", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 848.2409403653803, + "X": 848.24094036538031, "Y": 942.964730896822 }, { - "Id": "3c9ac520e57f47baa40d2535128ff51c", + "ShowGeometry": true, "Name": "Relinquish Family Worksets", + "Id": "3c9ac520e57f47baa40d2535128ff51c", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 847.6034143223051, + "X": 847.60341432230507, "Y": 1094.3085825329924 }, { - "Id": "2ece7016573a4a818d005e3699f288a6", + "ShowGeometry": true, "Name": "Relinquish User Created Worksets", + "Id": "2ece7016573a4a818d005e3699f288a6", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 848.5825007399386, - "Y": 1245.652434169163 + "X": 848.58250073993861, + "Y": 1245.6524341691629 }, { - "Id": "496f0435db0f4544978b5f43da92443a", + "ShowGeometry": true, "Name": "Save Local File Before Sync", + "Id": "496f0435db0f4544978b5f43da92443a", "IsSetAsInput": true, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 848.2093854568689, + "X": 848.20938545686886, "Y": 1694.2188694006063 }, { - "Id": "221fc82a644a43d595b7071e2981c9b2", + "ShowGeometry": true, "Name": "String", + "Id": "221fc82a644a43d595b7071e2981c9b2", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 657.5411941415645, - "Y": 2181.390194128507 + "X": 657.54119414156446, + "Y": 2181.3901941285071 }, { - "Id": "39e0d043ef2b403c9fb4e17d1f563a12", + "ShowGeometry": true, "Name": "All Elements Of Category+", + "Id": "39e0d043ef2b403c9fb4e17d1f563a12", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 850.5411941415645, - "Y": 2181.390194128507 + "X": 850.54119414156446, + "Y": 2181.3901941285071 }, { - "Id": "e79dbf60d26f41479271c7789d491a6a", + "ShowGeometry": true, "Name": "Watch", + "Id": "e79dbf60d26f41479271c7789d491a6a", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1464.5503103664043, "Y": 1922.1594612190463 }, { - "Id": "4304e87644314502b030174c7c65aa4e", + "ShowGeometry": true, "Name": "Element.Workset", + "Id": "4304e87644314502b030174c7c65aa4e", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1774.5503103664043, "Y": 1922.1594612190463 }, { - "Id": "31d4e6c2778e4abebc315efaa2e1fb94", + "ShowGeometry": true, "Name": "Watch", + "Id": "31d4e6c2778e4abebc315efaa2e1fb94", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 2091.550310366404, + "X": 2091.5503103664041, "Y": 1922.1594612190465 }, { - "Id": "1605de02d8c445048ee1138e1b3095fa", + "ShowGeometry": true, "Name": "Element.SetWorkset", + "Id": "1605de02d8c445048ee1138e1b3095fa", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 2533.259020519528, - "Y": 1499.770298307613 + "X": 2533.2590205195279, + "Y": 1499.7702983076131 }, { - "Id": "870864f73b064328872e5b5f718bf484", + "ShowGeometry": true, "Name": "List.FirstItem", + "Id": "870864f73b064328872e5b5f718bf484", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 2289.7033677236172, "Y": 1615.8442103144273 }, { - "Id": "7eacfd9e5905401a9f16fa43921a15e2", + "ShowGeometry": true, "Name": "List.FirstItem", + "Id": "7eacfd9e5905401a9f16fa43921a15e2", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 2281.8515418025268, "Y": 1431.288907583797 }, { - "Id": "cf0632ee82f046ee984f06de035bb809", + "ShowGeometry": true, "Name": "Watch", + "Id": "cf0632ee82f046ee984f06de035bb809", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 2858.259020519528, - "Y": 1365.770298307613 + "X": 2858.2590205195279, + "Y": 1365.7702983076131 }, { - "Id": "8d36de5fc7f14ad3911f6cd397e7be36", + "ShowGeometry": true, "Name": "Watch", + "Id": "8d36de5fc7f14ad3911f6cd397e7be36", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, - "X": 2858.259020519528, - "Y": 1659.770298307613 + "X": 2858.2590205195279, + "Y": 1659.7702983076131 }, { - "Id": "bc78737e3d6d4b1fa2e47e04b46dee01", + "ShowGeometry": true, "Name": "Document.IsWorkshared", + "Id": "bc78737e3d6d4b1fa2e47e04b46dee01", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1466.6299207613374, - "Y": 661.6786806064197 + "Y": 661.67868060641968 }, { - "Id": "626d1405a19044be9f76cb99f51ff933", + "ShowGeometry": true, "Name": "Watch", + "Id": "626d1405a19044be9f76cb99f51ff933", "IsSetAsInput": false, "IsSetAsOutput": false, "Excluded": false, - "ShowGeometry": true, "X": 1859.5913398000596, - "Y": 660.0256333855634 + "Y": 660.02563338556342 } ], "Annotations": [ { "Id": "3b2213e140ed44e7ba88510f97fd3e8f", "Title": "Document.Worksets", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "aef5dea37407444d9ed9ffb07c9bad3e", "64363fab57b94852ae02520760251475" ], - "HasNestedGroups": false, "Left": 1455.1463593284614, - "Top": 883.4971177524262, - "Width": 705.3999999999999, - "Height": 370.5999999999999, + "Top": 902.69711775242615, + "Width": 636.60000000000014, + "Height": 330.6, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", "InitialTop": 955.8971177524262, - "InitialHeight": 145.0, - "TextblockHeight": 62.4, + "InitialHeight": 145.00000000000011, + "TextblockHeight": 43.2, "Background": "#FF48B9FF" }, { "Id": "cc9ee32e8468453182d35a5580ee658d", "Title": "Workset.Kind", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "4f04084c76274b5d8fe1db8fdddf88e2", "b2c1f0fae56c4678bd0e48e6ccf4563d" ], - "HasNestedGroups": false, - "Left": 2527.968868618222, - "Top": 888.9816654193681, - "Width": 591.4000000000001, - "Height": 370.6, + "Left": 2527.9688686182221, + "Top": 908.18166541936807, + "Width": 522.59999999999991, + "Height": 330.59999999999991, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", - "InitialTop": 961.3816654193681, + "InitialTop": 961.38166541936812, "InitialHeight": 145.0, - "TextblockHeight": 62.4, + "TextblockHeight": 43.2, "Background": "#FF48B9FF" }, { "Id": "edc7279010704a0a8fa3573c575af214", "Title": "INFO", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "be106b694055431680c59472ee8efc87" ], - "HasNestedGroups": false, - "Left": 829.9653989527001, - "Top": 397.25018363562083, - "Width": 277.5999999999999, - "Height": 121.79999999999995, + "Left": 829.96539895270007, + "Top": 424.45018363562082, + "Width": 273.59999999999991, + "Height": 102.59999999999997, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", - "InitialTop": 469.6501836356208, + "InitialTop": 477.65018363562081, "InitialHeight": 145.0, - "TextblockHeight": 62.4, + "TextblockHeight": 43.2, "Background": "#FF848484" }, { "Id": "58ec2cfc384d4ab785bad1ac2afdfdd4", "Title": "Document.SynchronizeWithCentral", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "f16fcf7705634a55b951fb429627712f", "606def05db3448d7b20dc391e81b5ce6" ], - "HasNestedGroups": false, "Left": 1463.1062079181359, - "Top": 1283.3393679497194, - "Width": 613.9999999999998, - "Height": 516.2, + "Top": 1302.5393679497195, + "Width": 695.60000000000014, + "Height": 376.20000000000005, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", "InitialTop": 1355.7393679497195, "InitialHeight": 145.0, - "TextblockHeight": 62.4, + "TextblockHeight": 43.2, "Background": "#FFFF7BAC" }, { "Id": "2eff4cd1191a471ebc6d05afe0fc32e8", "Title": "INPUTS", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "81286f8470ed4f51b72969d571772983", "3a0f5de2115641a682b38bcdf1bb635f", @@ -1588,112 +1517,86 @@ "2ece7016573a4a818d005e3699f288a6", "496f0435db0f4544978b5f43da92443a" ], - "HasNestedGroups": false, - "Left": 835.3982069032896, - "Top": 567.2104315682501, - "Width": 380.52511607135955, - "Height": 1555.7158552510186, + "Left": 835.39820690328963, + "Top": 586.41043156825, + "Width": 326.92511607135964, + "Height": 1472.5158552510184, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", - "InitialTop": 639.6104315682501, - "InitialHeight": 761.5158552510186, - "TextblockHeight": 62.4, + "InitialTop": 639.61043156825008, + "InitialHeight": 1496.5158552510184, + "TextblockHeight": 43.2, "Background": "#FF848484" }, { "Id": "c6eb0cf6e1314f9095323274a25bbc3b", "Title": "Element.Workset", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "e79dbf60d26f41479271c7789d491a6a", "4304e87644314502b030174c7c65aa4e", "31d4e6c2778e4abebc315efaa2e1fb94" ], - "HasNestedGroups": false, "Left": 1454.5503103664043, - "Top": 1849.7594612190462, - "Width": 925.3999999999999, - "Height": 370.60000000000014, + "Top": 1868.9594612190463, + "Width": 856.59999999999968, + "Height": 330.60000000000036, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", "InitialTop": 1922.1594612190463, "InitialHeight": 145.00000000000023, - "TextblockHeight": 62.4, + "TextblockHeight": 43.2, "Background": "#FF48B9FF" }, { "Id": "673d104ef06045d2b02f5f2a83cbd8f0", "Title": "Element.SetWorkset", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "1605de02d8c445048ee1138e1b3095fa", "cf0632ee82f046ee984f06de035bb809", "8d36de5fc7f14ad3911f6cd397e7be36" ], - "HasNestedGroups": false, - "Left": 2523.259020519528, - "Top": 1293.370298307613, - "Width": 683.4000000000001, - "Height": 503.0, + "Left": 2523.2590205195279, + "Top": 1312.570298307613, + "Width": 554.59999999999991, + "Height": 624.59999999999991, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", - "InitialTop": 1365.770298307613, + "InitialTop": 1365.7702983076131, "InitialHeight": 439.0, - "TextblockHeight": 62.4, + "TextblockHeight": 43.2, "Background": "#FFFF7BAC" }, { "Id": "90a9eac9f1a341ef86fece34311e40e3", "Title": "Document.IsWorkshared", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [ "bc78737e3d6d4b1fa2e47e04b46dee01", "626d1405a19044be9f76cb99f51ff933" ], - "HasNestedGroups": false, "Left": 1456.6299207613374, - "Top": 587.6256333855634, - "Width": 540.9614190387222, - "Height": 236.25304722085627, + "Top": 606.82563338556338, + "Width": 622.56141903872231, + "Height": 330.6, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", - "InitialTop": 660.0256333855634, + "InitialTop": 660.02563338556342, "InitialHeight": 146.65304722085625, - "TextblockHeight": 62.4, + "TextblockHeight": 43.2, "Background": "#FF48B9FF" }, { "Id": "be106b694055431680c59472ee8efc87", "Title": "You'll need to run this on a workshared file...", - "DescriptionText": null, - "IsExpanded": true, - "WidthAdjustment": 0.0, - "HeightAdjustment": 0.0, "Nodes": [], - "HasNestedGroups": false, - "Left": 839.9653989527001, - "Top": 477.6501836356208, + "Left": 839.96539895270007, + "Top": 477.65018363562081, "Width": 0.0, "Height": 0.0, "FontSize": 36.0, - "GroupStyleId": "00000000-0000-0000-0000-000000000000", "InitialTop": 0.0, "InitialHeight": 0.0, "TextblockHeight": 0.0, "Background": "#FFC1D676" } ], - "X": -143.05361322624867, - "Y": -178.7065227850668, - "Zoom": 0.33971371612679024 + "X": -170.62218433957898, + "Y": -125.5554738022158, + "Zoom": 0.32566819637377659 } } \ No newline at end of file