RVTDocs.com
Namespace: Autodesk.Revit.DB

FloorType

Class
Description:
An object that specifies the type of a floor in Autodesk Revit.
Remarks:
The structural layers of the floor can be accessed via this object.
Inheritance Hierarchy:
System.Object
  Autodesk.Revit.DB.Element
    Autodesk.Revit.DB.ElementType
      Autodesk.Revit.DB.HostObjAttributes
        Autodesk.Revit.DB.FloorType
Syntax
public class FloorType : HostObjAttributes
Examples
public void GetInfo_FloorType(FloorType floorType)
{
    string message;
    // Get whether FloorType is a foundation slab
    message = "If is foundation slab : " + floorType.IsFoundationSlab;
    TaskDialog.Show("Revit",message);
}