Revit.SDK.Samples.Reinforcement.CS.BeamFramReinMaker.FillWithBars C# (CSharp) Method

FillWithBars() protected method

Override method to create rebar on the selected beam
protected FillWithBars ( ) : bool
return bool
        protected override bool FillWithBars()
        {
            // create the top rebars
             bool flag = FillTopBars();

             // create the bottom rebars
             flag = flag && FillBottomBars();

             // create the transverse rebars
             flag = flag && FillTransverseBars();

             return base.FillWithBars();
        }