SetOuterContour Method


Sets the Curve Loop that defines the geometry of the Analytical Surface element.

Namespace: Autodesk.Revit.DB.Structure
Assembly: RevitAPI (in RevitAPI.dll) Version: 23.0.0.0 (23.1.0.0)
Since: 2023

Syntax

C#
public void SetOuterContour(
	CurveLoop outerContour
)
Visual Basic
Public Sub SetOuterContour ( _
	outerContour As CurveLoop _
)
Visual C++
public:
void SetOuterContour(
	CurveLoop^ outerContour
)

Parameters

outerContour
Type: Autodesk.Revit.DB CurveLoop
New Curve Loop for the Analytical Surface element.

Remarks

Curve Loop must be planar and not self-intersecting.

Examples

Copy C#
   using (Transaction transaction = new Transaction(document, "Edit Analytical Panel outer contour"))
   {
      transaction.Start();

      //create a new curve loop
      CurveLoop profileloop = new CurveLoop();
      profileloop.Append(Line.CreateBound(
         new XYZ(0, 0, 0), new XYZ(5, 0, 0)));
      profileloop.Append(Line.CreateBound(
         new XYZ(5, 0, 0), new XYZ(5, 5, 0)));
      profileloop.Append(Line.CreateBound(
         new XYZ(5, 5, 0), new XYZ(-2, 5, 0)));
      profileloop.Append(Line.CreateBound(
         new XYZ(-2, 5, 0), new XYZ(0, 0, 0)));

      //Sets the new contour for analytical panel
      analyticalPanel.SetOuterContour(profileloop);

      transaction.Commit();
   }
}

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException One of the following requirements is not satisfied : - curve loop outerContour is not planar - curve loop outerContour is self-intersecting - curve loop outerContour contains zero length curves
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was null
Autodesk.Revit.Exceptions InvalidOperationException Only planar surfaces can be edited.

See Also

ArchiLabs

Stop fighting Revit automation.

Build repeatable BIM design and documentation workflows with scripts, data, and AI in one place, without wrestling brittle one-off automations.

Try ArchiLabs →