Beispiel #1
0
        public PdfStream(
      PdfDictionary header,
      IBuffer body
      )
        {
            this.header = (PdfDictionary)Include(header);

              this.body = body;
              body.Clean();
              body.OnChange += delegate(
            object sender,
            EventArgs args
            )
              {Update();};
        }