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

FillWithBars() protected method

Override method to create rebars on the selected column
protected FillWithBars ( ) : bool
return bool
        protected override bool FillWithBars()
        {
            // create the transverse rebars
             bool flag = FillTransverseBars();

             // create the vertical rebars
             flag = flag && FillVerticalBars();

             return base.FillWithBars();
        }