Ejemplo n.º 1
0
        public static StiReport CreateTemplate()
        {
            var report    = StiReport.CreateNewDashboard();
            var dashboard = report.Pages[0] as StiDashboard;

            var textElement = new StiTextElement();

            textElement.Left        = 100;
            textElement.Top         = 100;
            textElement.Width       = 300;
            textElement.Height      = 100;
            textElement.Text        = "Sample Text";
            textElement.Border.Side = StiBorderSides.All;
            textElement.BackColor   = Color.LightGray;

            dashboard.Components.Add(textElement);

            return(report);
        }
Ejemplo n.º 2
0
        private StiReport CreateTemplate()
        {
            var report = new StiReport();

            report.Pages.Clear();

            var dashboard = new StiDashboard();

            report.Pages.Add(dashboard);

            var textElement = new StiTextElement();

            textElement.Left        = 100;
            textElement.Top         = 100;
            textElement.Width       = 300;
            textElement.Height      = 100;
            textElement.Text        = "Sample Text";
            textElement.Border.Side = StiBorderSides.All;
            textElement.BackColor   = Color.LightGray;

            dashboard.Components.Add(textElement);

            return(report);
        }