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