Beispiel #1
0
 public void KR_MonolithNumbering()
 {
     AcadLib.CommandStart.Start(doc =>
     {
         Spec.SpecService spec = new Spec.SpecService(doc, new Spec.Monolith.MonolithOptions(doc.Database));
         spec.Numbering();
     });
 }
Beispiel #2
0
 public void KR_OpeningsNumbering()
 {
     AcadLib.CommandStart.Start(doc =>
     {
         Spec.SpecService spec = new Spec.SpecService(doc, new Spec.WallOpenings.WallOptions(doc.Database));
         spec.Numbering();
     });
 }
Beispiel #3
0
 public void KR_ArmWallNumbering()
 {
     AcadLib.CommandStart.Start(doc =>
     {
         var spec = new Spec.SpecService(doc, new Spec.ArmWall.ArmWallOptions(doc.Database));
         spec.Numbering();
     });
 }