using System.Collections.Generic;
using Consulenza.ReportWriter.Business.Entity;
using ceTe.DynamicPDF;
using System;
namespace Consulenza.ReportWriter.Business.OBJ_PDF
{
///
/// Rappresenta un oggetto contenitore di Elements.
///
public class CompositePDF : ObjectPDF
{
///
/// Ottiene o imposta la lista di ObjectPDF che saranno renderizzati.
///
public List Elements { get; set; }
///
/// Costruttore
///
public CompositePDF()
{
}
///
/// Costruttore
///
///
public CompositePDF(List elements)
{
Elements = elements;
ObjectType = ObjectTypePdf.COMPOSITE;
}
///
/// Ritorna l'oggetto che sarà stampato sulla pagina del documento.
///
///
public override PageElement ToElement()
{
throw new NotImplementedException();
}
}
}