Message 1 of 2
Can we access the System Family Name instead of a typical family

Not applicable
08-09-2016
11:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I can access family and get their names, but it is only limited to typical one. Can i access system family like Rectangular Duct or Basic walls by API.
string target = ""; if ( e is FamilyInstance) { FamilyInstance fInstance = e as FamilyInstance; FamilySymbol fSymbol = fInstance.Symbol; Family family = fSymbol.Family; target = family.Name; }