Sets the boundary and path curves of the sketched landing.
Namespace: Autodesk.Revit.DB.Architecture
Assembly: RevitAPI (in RevitAPI.dll) Version: 19.0.0.0 (19.0.0.405)
Since:
2017
Syntax
Visual Basic |
---|
Public Sub SetSketchedLandingBoundaryAndPath ( _
document As Document, _
boundaryCurveLoop As CurveLoop, _
pathCurveLoop As CurveLoop _
) |
Visual C++ |
---|
public:
void SetSketchedLandingBoundaryAndPath(
Document^ document,
CurveLoop^ boundaryCurveLoop,
CurveLoop^ pathCurveLoop
) |
Remarks
Exceptions
Exception | Condition |
---|
Autodesk.Revit.Exceptions..::..ArgumentException |
The boundaryCurveLoop is not closed.
-or-
The input boundaryCurveLoop contains at least one curve which is not a bound Line or bound Arc
and is not supported for this operation.
-or-
The input pathCurveLoop contains at least one curve which is not a bound Line or bound Arc
and is not supported for this operation.
-or-
Failed to create curve element by the boundaryCurveLoop or pathCurveLoop.
|
Autodesk.Revit.Exceptions..::..ArgumentNullException |
A non-optional argument was NULL
|
See Also