Message 1 of 3
Not applicable
10-14-2016
08:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
just wanted to share some code as I "lost" one hour of my life to look for it. If you want to access the setting for "Symbolic Representation" inside a family document, here we go:
Parameter param = famdoc.OwnerFamily.get_Parameter(BuiltInParameter.FAMILY_SYMBOLIC_REP);
if (param != null)
{
// 0 - From Family // 1 - From Project Setting
param.Set(1);
}Regards
Christian
Solved! Go to Solution.