Message 1 of 3

Not applicable
01-28-2018
10:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to read all the family parameters by using the following code:
Dictionary<string, FamilyParameter> familyparameters = new Dictionary<string, FamilyParameter>(totalParams); foreach (FamilyParameter familyParameter in familyManager.Parameters) { string name = familyParameter.Definition.Name; familyparameters.Add(name, familyParameter); }
When I run the code, it returns the list of family parameters But it does not read the parameters like Omni Class Number, Assembly Description and all the parameters show in the grey color. See the image below.
Appreciate if someone shares the solution to get these parameters as well. Thank you
Solved! Go to Solution.