コード例 #1
0
ファイル: Paper.cs プロジェクト: Joris-Pieters/MCDRI
 public Paper(Test test, PaperTemplate template, PaperOrientation orientation, SizeF border)
 {
     ParentTest  = test;
     Template    = template;
     Orientation = orientation;
     BorderInch  = border;
     SetSize();
 }
コード例 #2
0
ファイル: Paper.cs プロジェクト: Joris-Pieters/MCDRI
 public Paper(Test test, PaperTemplate template, PaperOrientation orientation)
 {
     ParentTest  = test;
     Template    = template;
     Orientation = orientation;
     BorderInch  = Program.UserSettings.defaultPaperBorder;
     SetSize();
 }