//------------------------------------------------------------------------------------------14.02.2006 /// <summary>Starts the "Start Template" sample.</summary> /// <remarks>This method serves only to start the application.</remarks> public static void Main() { #if Framework2 PdfReport <StartTemplate> pdfReport = new PdfReport <StartTemplate>(); pdfReport.pageLayout = PageLayout.SinglePage; pdfReport.View("StartTemplate.pdf"); #else RT.ViewPDF(new StartTemplate(), "StartTemplate.pdf"); #endif }