### Cable and Harness Library Configuration Files Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-3FC29DBD-DF25-45F8-8297-1D8F9081C597 Sample configuration files for various library objects including wires, cables, splices, seals, terminals, plugs, labels, looms, virtual parts, and ribbon cables. ```text libwires _C:\libwires.log_ Wire Name,Appearance,Outer Diameter,Category,Part Number,Gauge text,text,length,text,text,text none,none,inch,none,none,none ``` ```text libcables _C:\libcables.log_ Cable Name,Category,Part Number,Outer Diameter,Conductor ID, Wire Name text,text,text,length,text,text none,none,none,inch,none,none ``` ```text libsplices _C:\libsplice.log_ Library Name,Category,Part Number,Embedded Length, MyCustom text,text,text,length,text none,none,none,inch,none ``` ```text libseals _C:\libvirtualparts-seals.log_ Name,Category,Part Number,Min Outer Diameter, Max Outer Diameter, Diameter Type text, text, text, length, length,text none, none, none, inch, inch, none ``` ```text libterminals _C:\libvirtualparts-terminals.log_ Name,Category,Part Number,Min Gauge, Max Gauge, Gauge Type text, text, text, text, text,text none, none, none, none, none, none ``` ```text libplugs _C:\libvirtualparts-plugs.log_ Name,Category,Part Number text, text, text none, none, none ``` ```text liblabels _C:\libvirtualparts-labels.log_ Name,Category,Part Number,Height, Width text, text, text, length, length none, none, none, inch, inch ``` ```text liblooms _C:\libvirtualparts-looms.log_ Name,Category,Part Number,Appearance, Wall Thickness, Min Diameter, Max Diameter, Diameter Type text, text, text, text, length, length, length, text none, none, none, none, inch, inch, inch, none ``` ```text libvirtualpart _C:\libvirtualparts-virtualparts.log_ Name,Category,Part Number text, text, text none, none, none ``` ```text libribboncables _C:\librawribboncables.log_ Name,Category,Part Number,Conductor One Appearance,Ribbon Body Apppearance,Number of Conductors,Pitch,Height,Width,Gauge,Core Size text,text,text, text,text,text,length,length,length,text,length none,none,none,none,none,none,inch,inch,inch,none,inch ``` -------------------------------- ### Sheet.Border Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-89DC0590-BE14-47E6-B83A-0A8F5B2163AA Gets or sets the current border on the sheet. ```APIDOC ## Sheet.Border ### Description Change the current border on the sheet by specifying a different name found in the drawing resources. ``` -------------------------------- ### MultiValue.List Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-6B4885C8-7E75-4FEA-8DEF-EA7D40F33EB3 Gets or sets the list of values for a parameter. ```APIDOC ## MultiValue.List(parameterName) ### Description Retrieves the current list of values for a parameter as an ArrayList, or assigns a new list of values to the parameter. ``` -------------------------------- ### Launch File Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-622DED58-5CCB-423C-89E6-57ABBEB139A5 Opens a file using its associated application. If no path is specified, it searches the document folder. ```iLogic ThisDoc.Launch("path\file.ext") ``` -------------------------------- ### Create Relative Path Batch File Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-B3CA11B1-AE19-426D-8348-F59952C0DA55 Use a .bat file to enable relative pathing for deployment shortcuts, as Windows .lnk files have limited support for relative paths. ```text \\Server_Location\Shared_Folder\MyDeployConfig\Img\Setup.exe /qb /I \\Server_Location\Shared_Folder\MyDeployConfig\Img\MyDeployConfig.ini /language en-us ``` ```batch .\MyDeployConfig\Img\Setup.exe /qb /I .\MyDeployConfig\Img\MyDeployConfig.ini /language en-us ``` -------------------------------- ### Sheet.TitleBlock Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-89DC0590-BE14-47E6-B83A-0A8F5B2163AA Gets or sets the current title block on the sheet. ```APIDOC ## Sheet.TitleBlock ### Description Change the current title block on the sheet by specifying a different name found in the drawing resources. ``` -------------------------------- ### Select Case with Range and Relational Operators Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-4D3AE24D-A418-4E43-AE05-B3A7918ABBA7 Demonstrates using lists, ranges, and relational operators within Case clauses. ```iLogic Select Case width Case 1,2,3,4,5 MessageBox.Show("Small Plate", "Size") Case 6 to 15 MessageBox.Show("Medium Plate", "Size") Case Is > 15 MessageBox.Show("Large Plate", "Size") End Select ``` -------------------------------- ### Get Active KFactor Source: https://help.autodesk.com/view/INVNTOR/2025/ENU?guid=GUID-B6A1BDDF-F2D4-4C42-9466-4754910BB714 Retrieves the numeric value of the currently active KFactor. ```iLogic KFactorParameter=SheetMetal.ActiveKFactor ```