I’m trying to build a dynamo file for editing line styles, line weights using an excel file. Input the data in excel, translate it in dynamo, then run it and apply them to the project. I figured out the linestyle creation part of it and it works well, but I can’t even find the options for editing the line weights. I can’t even find the api reference to this setting. Does anyone know what the api reference section is? Maybe provide a link?
My current script i pieced together should have the scales for IN[0] and the values for each style are in IN[1]
Here’s my script:
import clr
clr.AddReference('RevitAPI')
clr.AddReference('RevitServices')
from Autodesk.Revit.DB import Document, Transaction
from RevitServices.Persistence import DocumentManager
# Getting the document
doc = DocumentManager.Instance.CurrentDBDocument
# Inputs from previous nodes
scales = IN[0] # List of scales, e.g., ['1"=1-0"', '1/2"=1-0"', ..., '1/32"=1-0"']
lineWeights = IN[1] # Matrix of line weights, each row corresponds to a scale, each column to a line weight number
# Start a transaction to modify the document
t = Transaction(doc, "Update Line Weights")
t.Start()
try:
for scaleIndex, scale in enumerate(scales):
for lwNumber in range(1, 17): # Assuming line weights are from 1 to 16
lwValue = lineWeights[scaleIndex][lwNumber - 1] # Access the corresponding value
# Set the line weight for each number at the current scale
doc.GetLineWeightSettings().SetLineWeight(lwNumber, lwValue, scale)
t.Commit() # Commit the changes if successful
except Exception as e:
t.RollBack() # Roll back if there's an error
output = str(e)
# Output success message or error
OUT = "Line weights updated successfully!"