There are times when you want to change the file reference of a parameter link as part of your workflow, i.e. replacing a part in an assembly doesn't replace the file reference in the parameters, the only way to do this is to delete that reference, make the new one, and fix all of the necessary parameters to use the correct reference parameter. Currently this can only be done with Excel spreadsheets through the API:
SyntaxEditor Code Snippet
ThisDoc.Document.ComponentDefinition.Parameters.ParameterTables.Item(1).FileName="C:\Users\Public\Downloads\Book2.xlsx"
We'd like the ability to easily change the file reference in parameters manually and through the API with part and assembly files included. Thanks.