コード例 #1
0
ファイル: PDFDoubleArray.cs プロジェクト: silvath/siscobras
 internal PDFDoubleArray(PDFFixed val) : base(1)
 {
     this.mPDFArr  = null;
     this.mPDFFix  = null;
     this.mParent  = null;
     this.mKeyName = null;
     this.mAsFixed = false;
     this.mAsFixed = true;
     this.mPDFFix  = val;
     this.mArr[0]  = val.Value;
 }
コード例 #2
0
ファイル: PDFWriter.cs プロジェクト: silvath/siscobras
 public void WriteFixed(PDFFixed val)
 {
     this.WriteFixed(val.Value);
 }