ToposolidCreateSubDivision(Document, ElementId, IListCurveLoop) Method |
Creates a Toposolid subdivision element with the current Toposolid as its host.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 27.0.4.0 (27.0.4.0)
Syntaxpublic Toposolid CreateSubDivision(
Document document,
ElementId topoTypeId,
IList<CurveLoop> profiles
)
Public Function CreateSubDivision (
document As Document,
topoTypeId As ElementId,
profiles As IList(Of CurveLoop)
) As Toposolid
public:
Toposolid^ CreateSubDivision(
Document^ document,
ElementId^ topoTypeId,
IList<CurveLoop^>^ profiles
)
member CreateSubDivision :
document : Document *
topoTypeId : ElementId *
profiles : IList<CurveLoop> -> Toposolid Parameters
- document Document
-
The document in which the new Toposolid is created.
- topoTypeId ElementId
-
Id of the Toposolid type to be used by the new subdivision.
- profiles IListCurveLoop
-
An array of planar curve loops that represent the profiles of the Toposolid.
Return Value
Toposolid
The Toposolid subdivision object.
Exceptions| Exception | Condition |
|---|
| ArgumentException |
The input curve loops cannot compose a valid boundary, that means:
the "curveLoops" collection is empty;
or some curve loops intersect with each other;
or each curve loop is not closed individually;
or each curve loop is not planar;
or each curve loop is not in a plane parallel to the horizontal(XY) plane;
or input curves contain at least one helical curve.
-or-
Toposolid type is not valid for this Toposolid.
|
| ArgumentNullException |
A non-optional argument was null
|
See Also