예제 #1
0
 void Printing.IPrintable.PrintBy(Printing.IPrinter printer)
 {
     if (_heading != null)
     {
         printer.SetOutlineHere(_heading.Level, _heading.Title);
     }
     foreach (var t in _texts)
     {
         t.PrintBy(printer);
     }
 }