GetElevationProfile Method


Obtains the curve loops which bound the wall's elevation profile.

Namespace: Autodesk.Revit.DB.IFC
Assembly: RevitAPIIFC (in RevitAPIIFC.dll) Version: 24.0.0.0 (24.0.0.0)
Since:  2012

Syntax

C#
public static IList<CurveLoop> GetElevationProfile(
	Wall pVWall
)
Visual Basic
Public Shared Function GetElevationProfile ( _
	pVWall As Wall _
) As IList(Of CurveLoop)
Visual C++
public:
static IList<CurveLoop^>^ GetElevationProfile(
	Wall^ pVWall
)

Parameters

pVWall
Type: Autodesk.Revit.DBWall
The wall.

Return Value

The collection of curve loops.

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentException The wall does not have an elevation profile.
Autodesk.Revit.ExceptionsArgumentNullException A non-optional argument was null

See Also