Revit 2025.3 API
Item |
Creates a new detail curve element.
Namespace: Autodesk.Revit.Creation
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public DetailCurve NewDetailCurve( View view, Curve geometryCurve )
Public Function NewDetailCurve ( view As View, geometryCurve As Curve ) As DetailCurve
public: DetailCurve^ NewDetailCurve( View^ view, Curve^ geometryCurve )
member NewDetailCurve : view : View * geometryCurve : Curve -> DetailCurve
Parameters
- view View
- The view in which the detail curve is to be visible.
- geometryCurve Curve
- The internal geometry curve for detail curve. It should be a bound curve.
Return Value
DetailCurveIf successful a new detail curve element. Otherwise .

Exception | Condition |
---|---|
ArgumentException | Thrown when curve is not in plane of the view |

Different type of detail curve element will be returned according to the type of geometry curve.
See Also