- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have added a parameter to revit '24 using the API with the following code:
List<JFGParameter> sharedParameters = new List<JFGParameter>();
sharedParameters.Add(new JFGParameter() { Name = "JFG_ElementId", Group = GroupTypeId.IdentityData, DataType = SpecTypeId.String.Text });
A value is assigned to the parameter via code and, as far a I can tell, that part is working properly
I am trying to have a tag read this parameter so we can add unique identifiers to our detail drawings.
Here are pictures of the edit label screen from the tag family
Displayed tag when used on element containing a value for the parameter
I'm not sure if my problem is in the way I am adding the parameter or assigning a value. Any help would be appreciated.
Solved! Go to Solution.