Revit unknown element

@awilliams is correct in why it’s showing as an unknown type, but you should be able to query most parameters still. Try asking for the type of ceiling directly in a code block:

elem.GetParameterValueByName("Type");

This will return the type for any element passed, unless it doesn’t have a type in which case it will return a null or empty value (depending on what you fed it).