BuildingCoder.CmdSetTagType.GetFamilySymbols C# (CSharp) Method

GetFamilySymbols() static private method

Return all family symbols in the given document matching the given built-in category. Todo: Compare this with the FamilySymbolFilter class.
static private GetFamilySymbols ( Document doc, BuiltInCategory bic ) : FilteredElementCollector
doc Document
bic BuiltInCategory
return FilteredElementCollector
        static FilteredElementCollector GetFamilySymbols(
            Document doc,
            BuiltInCategory bic)
        {
            return GetElementsOfType( doc,
            typeof( FamilySymbol ), bic );
        }