Hello everybody!
I am new to Revit API, and I don't manage to find away to get all the properties available on a FamilyInstance without having a family instance.
So I need to get all the parameters for a category even if there are no family instances of that category in the project.
When using the export to ODBC in REVIT, it generates tables and columns for each category even if not in use. But the columns are much less than the parameters a family instance has.
I tried TableView.GetAvailableParameters but it still does not return as many parameters as FamilyInstance.Parameters property.
I also tried ParameterFilterUtilities.GetFilterableParametersInCommon(doc, category), but again it returns less parameters than FamilyInstance.Parameters.
Is there a way to achive what I need?
Many thanks in advance!