parameterIO question

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello - very new to Fusion 360 and not really a programmer but here is what I am trying to do. I am looking at using Fusion360 to "build" kitchen cabinets. I want to draw the cabinet with all parts and export the part names and dimensions. I have played a little bit with the Parameter IO add-in in the apps. By renaming parameters, I can get most of what I want in a the CSV file. Is there a way to have it export the Value of the parameter instead of the Expression? I looked at the Pyton code and it looks like this is defined by line 217 to 218 or so. I see
for _param in design.allParameters:
result = result + _param.name + "," + _param.unit + "," + _param.expression + "," + _param.comment + "\n"
Would this be the place to modify the file to have it output the Value field? If so how would it need to be modified and once modified, how would I test the result in Fusion360? Is there a better way to do this or another program pout there that will generate a BOM in csv format?
Thanks,
Dan Cation