Share

Network.AddCurvePipe(ObjectId, ObjectId, Curve3d, Boolean, ObjectId, Boolean) Method

Note: This API is now obsolete.

Add a curve pipe by using the geometry information of an input curve.



Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280

Syntax

C#

[ObsoleteAttribute("Use the other overload PipeNetwork.AddCurvePipe() method instead.", 
	false)]
public void AddCurvePipe(
	ObjectId pipeFamilyId,
	ObjectId pipeSizeId,
	Curve3d curve,
	bool clockwise,
	ref ObjectId newPipeId,
	bool applyRules
)

VB

<ObsoleteAttribute("Use the other overload PipeNetwork.AddCurvePipe() method instead.", 
	false)>
Public Sub AddCurvePipe ( 
	pipeFamilyId As ObjectId,
	pipeSizeId As ObjectId,
	curve As Curve3d,
	clockwise As Boolean,
	ByRef newPipeId As ObjectId,
	applyRules As Boolean
)

C++

public:
[ObsoleteAttribute(L"Use the other overload PipeNetwork.AddCurvePipe() method instead.", 
	false)]
void AddCurvePipe(
	ObjectId pipeFamilyId, 
	ObjectId pipeSizeId, 
	Curve3d^ curve, 
	bool clockwise, 
	ObjectId% newPipeId, 
	bool applyRules
)

Parameters

pipeFamilyId  ObjectId
Pipe family id.
pipeSizeId  ObjectId
Object id of the Pipe Size.
curve  Curve3d
The curve which supplies the geometry information.
clockwise  Boolean
Returns true if the new pipe has clockwise direction, false otherwise.
newPipeId  ObjectId
Returns the object id of the newly added pipe.
applyRules  Boolean
Returns whether the method needed to apply rules.

See Also

Reference

Was this information helpful?