Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I want to access the properties of selected sheet and modify them. I am able to do for properties which are listed under Identity Data
using
foreach (Element e in new FilteredElementCollector(doc).OfClass(typeof(FamilyInstance)).OwnedByView(viewsheet.Id))
{
Parameter param1 = e.LookupParameter(ParameterName);
if (param1 != null) { param1.Set(finalValue); }
but unable to do it for those under "Other"
This is just an example, I have few properties which are Associate Global Parameter and are placed inside Other in Properties window.
Thanks
Solved! Go to Solution.