Provides the ability to get and set the curve of a curve based element.
Namespace: Autodesk.Revit.DBAssembly: RevitAPI (in RevitAPI.dll) Version: 26.4.0.0 (26.4.0.0)
Syntax
C#
public Curve Curve { get; set; }Property Value
Curve
Remarks
This property can be used to set the location of curve based element to any desired
position. Many elements are curve based. Some examples are walls, beams and braces.
Example
C#
void MoveUsingCurveParam(Autodesk.Revit.ApplicationServices.Application application, Wall wall)
{
LocationCurve wallLine = wall.Location as LocationCurve;
XYZ p1 = XYZ.Zero;
XYZ p2 = new XYZ(10, 20, 0);
Line newWallLine = Line.CreateBound(p1, p2);
wallLine.Curve = newWallLine;
}
VB
Private Sub MoveUsingCurveParam(application As Autodesk.Revit.ApplicationServices.Application, wall As Wall)
Dim wallLine As LocationCurve = TryCast(wall.Location, LocationCurve)
Dim p1 As XYZ = XYZ.Zero
Dim p2 As New XYZ(10, 20, 0)
Dim newWallLine As Line = Line.CreateBound(p1, p2)
wallLine.Curve = newWallLine
End Sub
See Also
Reference