Inheritance: iTextSharp.text.rtf.RtfElement
Ejemplo n.º 1
0
 /**
  * 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);
 }
Ejemplo n.º 2
0
 /**
 * 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);
 }