Ejemplo n.º 1
0
 /**
  * <summary>Wraps the specified base array using the specified wrapper for wrapping its items.</summary>
  * <param name="context">Document context.</param>
  * <param name="itemWrapper">Item wrapper.</param>
  * <param name="baseDataObject">Base array.</param>
  */
 public Array(Document context, IWrapper <TItem> itemWrapper, PdfArray baseDataObject)
     : base(context, baseDataObject)
 {
     this.itemWrapper = itemWrapper;
 }
Ejemplo n.º 2
0
 /**
  * <summary>Wraps the specified base array using the default wrapper for wrapping its items.</summary>
  * <param name="context">Document context.</param>
  * <param name="baseDataObject">Base array.</param>
  */
 public Array(Document context, PdfArray baseDataObject)
     : this(context, new DefaultWrapper <TItem>(), baseDataObject)
 {
 }