Revit 2026 API
SolidSurface |
Returns the total surface area of this solid.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public double SurfaceArea { get; }
Public ReadOnly Property SurfaceArea As Double Get
public: property double SurfaceArea { double get (); }
member SurfaceArea : float with get
Return Value
DoubleThe real number equal to the total area of this solid.

Exception | Condition |
---|---|
InvalidOperationException | Thrown when this solid is not a valid Geometry object. |

Calculates the surface area by adding together the areas of faces comprising this solid.
Will slightly underestimate if curved surfaces are present.
See Also