コード例 #1
0
ファイル: RtfDocument.cs プロジェクト: pixelia-es/RazorPDF2
 /**
  * The default constructor for a RtfDocument
  */
 public RtfDocument() : base(null)
 {
     this.data           = new RtfMemoryCache();
     this.mapper         = new RtfMapper(this);
     this.documentHeader = new RtfDocumentHeader(this);
     this.documentHeader.Init();
     this.previousRandomInts = new ArrayList();
     this.documentSettings   = new RtfDocumentSettings(this);
 }
コード例 #2
0
ファイル: RtfDocument.cs プロジェクト: pixelia-es/RazorPDF2
 /**
 * The default constructor for a RtfDocument
 */
 public RtfDocument()
     : base(null)
 {
     this.data = new RtfMemoryCache();
     this.mapper = new RtfMapper(this);
     this.documentHeader = new RtfDocumentHeader(this);
     this.documentHeader.Init();
     this.previousRandomInts = new ArrayList();
     this.documentSettings = new RtfDocumentSettings(this);
 }