Can I get a family bounding Box XYZ, Revit lookup mentions something in the active view with the family type, which makes sense as the types vary, however familydoc.family.familytype only has access to family parameters! I need this to or a similar set of values for the 3d max extents of a family within the family doc.
foreach (FamilyType ft in _doc.FamilyManager.Types)
{
BoundingBoxXYZ bb = ft.boundingBox(); //doesnt exist
TaskDialog.Show("elem type name:", ft.Name + bb.min + bb.max);
}