Esempio n. 1
0
 public Paper(Test test, PaperTemplate template, PaperOrientation orientation, SizeF border)
 {
     ParentTest  = test;
     Template    = template;
     Orientation = orientation;
     BorderInch  = border;
     SetSize();
 }
Esempio n. 2
0
 public Paper(Test test, PaperTemplate template, PaperOrientation orientation)
 {
     ParentTest  = test;
     Template    = template;
     Orientation = orientation;
     BorderInch  = Program.UserSettings.defaultPaperBorder;
     SetSize();
 }