Пример #1
0
 public Paper(Test test, PaperTemplate template, PaperOrientation orientation, SizeF border)
 {
     ParentTest  = test;
     Template    = template;
     Orientation = orientation;
     BorderInch  = border;
     SetSize();
 }
Пример #2
0
 public Paper(Test test, PaperTemplate template, PaperOrientation orientation)
 {
     ParentTest  = test;
     Template    = template;
     Orientation = orientation;
     BorderInch  = Program.UserSettings.defaultPaperBorder;
     SetSize();
 }