How to Get List of All Parameter and values of Wall or any element

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dear Guys.
When i going to get schedule then i will got Following Properties for Wall:
In API when i use
Category cat = _doc.Settings.Categories.get_Item(BuiltInCategory.OST_Walls)
List<ElementId> catList = new List<ElementId>();
catList.Add(cat.Id);
ParameterFilterUtilities.GetFilterableParametersInCommon(_doc, _catList).ToList();
It gives me list of Parameters: In which above RED Mark Parameter is not Available.
I can find parameter in
Wall wTmp= Wall;
IList<Parameter> lstOrdPrms= wTmp.GetOrderedParameters();
But in this list there is some more paramater.
Now i want to know is there is any way to List all parameter like schedule and get there values. Because some paramater like width is available in in type. Not in Parameter list.
Note: This happen in almost all element.
Thanks