| RebarInSystemGetCenterlineCurves Method | 
   A chain of curves representing the centerline of the rebar.
Namespace: Autodesk.Revit.DB.StructureAssembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
 Syntax
Syntaxpublic IList<Curve> GetCenterlineCurves(
	bool adjustForSelfIntersection,
	bool suppressHooks,
	bool suppressBendRadius
)
Public Function GetCenterlineCurves ( 
	adjustForSelfIntersection As Boolean,
	suppressHooks As Boolean,
	suppressBendRadius As Boolean
) As IList(Of Curve)
public:
IList<Curve^>^ GetCenterlineCurves(
	bool adjustForSelfIntersection, 
	bool suppressHooks, 
	bool suppressBendRadius
)
member GetCenterlineCurves : 
        adjustForSelfIntersection : bool * 
        suppressHooks : bool * 
        suppressBendRadius : bool -> IList<Curve> Parameters
- adjustForSelfIntersection  Boolean
- 
   If the curves overlap, as in a planar stirrup, this parameter controls
   whether they should be adjusted to avoid intersection (as in fine views),
   or kept in a single plane for simplicity (as in coarse views).
- suppressHooks  Boolean
- 
   Identifies if the chain will include hooks curves.
- suppressBendRadius  Boolean
- 
   Identifies if the connected chain will include unfilleted curves.
Return Value
IListCurve
   The centerline curves or empty array if the curves cannot be computed because
   the parameters values are inconsistent
   with the constraints of the RebarShape definition.
 Remarks
Remarks
   This method will return the centerline curves for the first bar in set even if this bar isn't included.
 See Also
See Also