Revit.SDK.Samples.Reinforcement.CS.BeamFramReinMaker.FillWithBars C# (CSharp) Метод

FillWithBars() защищенный Метод

Override method to create rebar on the selected beam
protected FillWithBars ( ) : bool
Результат 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();
        }