- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
So I have this issue, when I place my Generic annotation I can't find a way to set its parameters, I have a generic annotation family created and I want a way to assign set its parameters after or before placing, but I can't find a way to do it, and am sure that someone has figured it out before so if you can be helpful and guide me to an example I would appreciate it. thanks
this is the code I used to locate the family and place it
IList<Element> Floordetails = col.OfClass(typeof(FamilySymbol)).WhereElementIsElementType().ToElements();
FamilySymbol floordetail = null;
foreach (Element f in Floordetails)
{
if (f.Name == "_VA_Floor_detail")
{
floordetail = f as FamilySymbol;
break;
}
}
uidoc.PostRequestForElementTypePlacement(floordetail);
Solved! Go to Solution.