Identifies whether the given curve loops compose a valid horizontal boundary.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)
Since:
2022
Syntax
| C# |
|---|
public static bool IsValidHorizontalBoundary(
IList<CurveLoop> curveLoops
) |
| Visual Basic |
|---|
Public Shared Function IsValidHorizontalBoundary ( _
curveLoops As IList(Of CurveLoop) _
) As Boolean |
| Visual C++ |
|---|
public:
static bool IsValidHorizontalBoundary(
IList<CurveLoop^>^ curveLoops
) |
Parameters
- curveLoops
- Type: System.Collections.Generic..::..IList<(Of <(<'CurveLoop>)>)>
The curve loops to be checked.
Return Value
True if the given curve loops are valid as described above, false otherwise.
Remarks
Exceptions
See Also