46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
using Consulenza.ReportWriter.Business;
|
|
using Consulenza.ReportWriter.Business.OBJ_PDF;
|
|
using Consulenza.ReportWriter.Business.CUSTOM_PDF.ConsulenzaUnica;
|
|
using Consulenza.ReportCommon;
|
|
|
|
namespace Consulenza.ReportWriter.Manager.Chapter.Unica
|
|
{
|
|
/// <summary>
|
|
/// Scheda 9. Patrimonio Fideuram: piramide dei bisogni. IdCapitolo 27
|
|
/// </summary>
|
|
public class S9 : Entity.Chapter
|
|
{
|
|
public S9(EnvironmentFacade environmentFacade, int idChapter)
|
|
: base(environmentFacade, idChapter)
|
|
{
|
|
Draw();
|
|
}
|
|
|
|
public S9(EnvironmentFacade environmentFacade, int idChapter, bool repeatoneachpage)
|
|
: this(environmentFacade, idChapter)
|
|
{
|
|
RepeatOnEachPage = repeatoneachpage;
|
|
}
|
|
|
|
protected override sealed void Draw()
|
|
{
|
|
// Aggiungo la pagina
|
|
AddElement(new PagePDF(PagePDF.PagePDFType.Generic));
|
|
|
|
var testi = GetText();
|
|
|
|
var intestazione = new ChapterHeadingPDF(
|
|
Helper.ReplaceVariables(testi.Rows[0]["testo1"].ToString(), EnvironmentFacade.ReportEnvironment),
|
|
//Helper.ReplaceVariables(testi.Rows[0]["testo2"].ToString(), EnvironmentFacade.ReportEnvironment),
|
|
EnvironmentFacade.RendererFacade.XLeftLimit,
|
|
EnvironmentFacade.RendererFacade.YUpperLimit,
|
|
EnvironmentFacade.ReportEnvironment.FontFamily
|
|
);
|
|
|
|
|
|
// Aggiungo gli elementi
|
|
AddElement(intestazione.ToElement());
|
|
}
|
|
}
|
|
}
|